Comment to 'Cant upload image into my UNA'
  • Example of logging into SSH:

    ssh username@your.server.ip.address
    

    Where:

    • username is your user on the server (usually root or another configured user)
    • your.server.ip.address is the server's IP address or domain name (e.g., 192.168.1.100 or example.com)

    Example:

    ssh root@192.168.1.100
    

    After running the command, you will be prompted to enter the password for that user. Once entered, you will be logged into the server shell.

    If you use a private key file for authentication, use:

    ssh -i /path/to/private_key.pem username@your.server.ip.address