Using SSH to Login to APOD
SSH password authentication is disabled. You must use SSH keys to connect if you plan to use SSH users to connect through the command line.
If your license does not include access to Console or Shares, you must SSH into the instance. If your license includes access to Console or Shares, log in through the web browser. For more information on logging in through the web browser, see Logging In.
Run the ssh command, providing the location of your .pem
private key, port 33001, and the user ec2-user.
# ssh -i /path/to/yourkey.pem -p 33001 ec2-user@instance_ip_address
Note: Your private key (.pem file) needs to have correct
permissions. If you just downloaded the key from Amazon Web Service, it most
likely does not have correct permissions. If you get an error message about
the key permissions when trying to SSH, change the permissions as
follows:
# chmod 600 /path/to/yourkey.pem