AWS SSH connect from OSX keep asking for password for SSH Key

user762579

As per Ben's answer, I created a key pair, downloaded the private key into ~/.ssh , changed the permissions to 600 and tried to ssh the instance ... but got unauthorized erro :

    $ ssh -v -i  ~/.ssh/aws-erwin16.pem [email protected]
    OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
    debug1: Reading configuration data /Users/jack/.ssh/config
    debug1: Reading configuration data /etc/ssh_config
    debug1: /etc/ssh_config line 20: Applying options for *
    debug1: Connecting to ec2-nn-nn-nnn-nnn.us-west-2.compute.amazonaws.com [54.69.113.179] port 22.
    debug1: Connection established.
    debug1: identity file /Users/jack/.ssh/aws-erwin16.pem type -1
    debug1: identity file /Users/jack/.ssh/aws-erwin16.pem-cert type -1
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_6.2
    debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1p1 Ubuntu-2ubuntu2
    debug1: match: OpenSSH_6.6.1p1 Ubuntu-2ubuntu2 pat OpenSSH*
    debug1: SSH2_MSG_KEXINIT sent
    debug1: SSH2_MSG_KEXINIT received
    debug1: kex: server->client aes128-ctr [email protected] none
    debug1: kex: client->server aes128-ctr [email protected] none
    debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
    debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
    debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
    debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
    debug1: Server host key: RSA 85:e4:69:56:21:4d:32:1c:e9:5c:83:a5:cc:28:03:39
    debug1: Host 'ec2-nn-nn-nnn-nnn.us-west-2.compute.amazonaws.com' is known and matches the RSA host key.
    debug1: Found key in /Users/jack/.ssh/known_hosts:22
    debug1: ssh_rsa_verify: signature correct
    debug1: SSH2_MSG_NEWKEYS sent
    debug1: expecting SSH2_MSG_NEWKEYS
    debug1: SSH2_MSG_NEWKEYS received
    debug1: Roaming not allowed by server
    debug1: SSH2_MSG_SERVICE_REQUEST sent
    debug1: SSH2_MSG_SERVICE_ACCEPT received
    debug1: Authentications that can continue: publickey
    debug1: Next authentication method: publickey
    debug1: Offering RSA public key: /Users/jack/.ssh/id_rsa
    debug1: Authentications that can continue: publickey
    debug1: Trying private key: /Users/jack/.ssh/aws-erwin16.pem
    debug1: read PEM private key done: type RSA
    debug1: Authentications that can continue: publickey
    debug1: No more authentication methods to try.
    Permission denied (publickey).

if I change the user name for ubuntu , and it runs fine... get connecte d..;

Ben Whaley

You have confused the X.509 Certificates with the Amazon EC2 Keypairs. EC2 Keypairs are used to log in to EC2 instances.

In the EC2 console, find the keypairs section on the left, generate a keypair, and save the private key locally to your disk. OpenSSH searches the ~/.ssh directory by default. Run chmod 600 ~/.ssh/<filename> to set the correct permissions. You can then use that key to access your instance via SSH.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

SSH Key - Still asking for password and passphrase

From Dev

SSH Key Keeps Asking for Password on Gitlab

From Dev

Git on Windows not asking for SSH key password, or using SSH Key

From Dev

SSH suddenly asking for password

From Dev

SSH suddenly asking for password

From Dev

ssh asking for password

From Dev

Why SSH is asking for my private key password each time

From Dev

ssh asking for password when trying to login via public key

From Dev

SSH asking for user password instead of private key passphrase

From Dev

Vscode keep asking for authentication after successfully added SSH key

From Dev

SSH asking for password at login and not passphrase

From Dev

ssh keeps asking for new password

From Dev

SSH from OSX with password 1 line

From Dev

public key or private key as a password of connect to remote database, ssh

From Dev

Git SSH keeps asking for password when cloning

From Dev

SSH access asking for password in local network but public

From Dev

ssh-agent keeps asking for password

From Dev

WSL ssh to localhost with publickey but keeping asking for password

From Dev

SSH keys not working, still asking for user password

From Dev

AWS ssh requesting password

From Dev

How do I stop GitX asking me for my SSH key password?

From Dev

SSH asking for passphrase on public key with no passphrase set

From Dev

SSH key asking for passphrase on Unix but not Window

From Dev

How do I connect to an Ubuntu server via SSH from OSX?

From Dev

Connect to Amazon AWS with GFTP (SSH uses key authentication .pem)

From Dev

How to retrieve ssh password with a working ssh key

From Dev

Login to SSH with no password and no ssh-key?

From Dev

Logging wrong password for ssh with key

From Dev

Google Authenticator SSH password or key

Related Related

  1. 1

    SSH Key - Still asking for password and passphrase

  2. 2

    SSH Key Keeps Asking for Password on Gitlab

  3. 3

    Git on Windows not asking for SSH key password, or using SSH Key

  4. 4

    SSH suddenly asking for password

  5. 5

    SSH suddenly asking for password

  6. 6

    ssh asking for password

  7. 7

    Why SSH is asking for my private key password each time

  8. 8

    ssh asking for password when trying to login via public key

  9. 9

    SSH asking for user password instead of private key passphrase

  10. 10

    Vscode keep asking for authentication after successfully added SSH key

  11. 11

    SSH asking for password at login and not passphrase

  12. 12

    ssh keeps asking for new password

  13. 13

    SSH from OSX with password 1 line

  14. 14

    public key or private key as a password of connect to remote database, ssh

  15. 15

    Git SSH keeps asking for password when cloning

  16. 16

    SSH access asking for password in local network but public

  17. 17

    ssh-agent keeps asking for password

  18. 18

    WSL ssh to localhost with publickey but keeping asking for password

  19. 19

    SSH keys not working, still asking for user password

  20. 20

    AWS ssh requesting password

  21. 21

    How do I stop GitX asking me for my SSH key password?

  22. 22

    SSH asking for passphrase on public key with no passphrase set

  23. 23

    SSH key asking for passphrase on Unix but not Window

  24. 24

    How do I connect to an Ubuntu server via SSH from OSX?

  25. 25

    Connect to Amazon AWS with GFTP (SSH uses key authentication .pem)

  26. 26

    How to retrieve ssh password with a working ssh key

  27. 27

    Login to SSH with no password and no ssh-key?

  28. 28

    Logging wrong password for ssh with key

  29. 29

    Google Authenticator SSH password or key

HotTag

Archive