2014-10-16 187 views
0

根據本的回答,我創建了一個密鑰對,將私鑰下載到〜/ .ssh,將權限更改爲600,並嘗試ssh實例...但有未經授權的埃羅:AWS SSH從OSX連接不斷詢問SSH密碼的密碼

$ 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). 

如果我更改用戶名的Ubuntu,並且它運行良好......得到connecte d ..;

回答

1

您已將X.509 CertificatesAmazon EC2 Keypairs混淆。 EC2密鑰對用於登錄到EC2實例。

在EC2控制檯中,找到左側的密鑰對部分,生成密鑰對,並將私鑰保存在本地磁盤上。 OpenSSH默認搜索~/.ssh目錄。運行chmod 600 ~/.ssh/<filename>以設置正確的權限。然後,您可以使用該密鑰通過SSH訪問您的實例。

+0

更新了我的問題..(並嚴重刪除了第一篇文章..)whern在AWS中創建了一個密鑰對,私鑰被自動下載......但使用它似乎並不順利 – erwin 2014-10-17 08:10:39

+0

與未經授權的用戶名稱而不是用戶插孔... – erwin 2014-10-17 09:37:34