2014-04-13 12 views
-1

我讀到Permissions error上的SO,但仍然無法通過publickey問題。你能看看我的日誌,告訴我還有什麼我需要做的,以解決這個問題?順便說一句,我已經chmod 600我的密鑰對了。我非常感謝你的幫助。當在Mac上通過SSH連接到EC2時,權限被拒絕(公鑰)小牛

(molaenv)[email protected]:~/webdev$ ssh -v -i ~/webdev/molakeypair.pem [email protected] 
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 
debug1: Reading configuration data /etc/ssh_config 
debug1: /etc/ssh_config line 20: Applying options for * 
debug1: Connecting to ec2-54-86-32-54.compute-1.amazonaws.com [54.86.32.54] port 22. 
debug1: Connection established. 
debug1: identity file /Users/van/webdev/molakeypair.pem type -1 
debug1: identity file /Users/van/webdev/molakeypair.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.2 
debug1: match: OpenSSH_6.2 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 8f:c8:b1:6d:5a:7c:fa:10:95:46:d4:34:63:17:b5:bd 
debug1: Host 'ec2-54-86-32-54.compute-1.amazonaws.com' is known and matches the RSA host key. 
debug1: Found key in /Users/van/.ssh/known_hosts:3 
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: Trying private key: /Users/van/webdev/molakeypair.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). 
+0

您可能在http://serverfault.com/有更好的答案話雖如此,它看起來像你的私鑰是錯誤的連接到你的機器。 – mustaccio

回答

1

什麼是在您的EC2實例上運行的操作系統?

對於亞馬遜發佈的AMI,我們對Amazon Linux和Red Hat使用ec2-user。 在Ubuntu中,默認用戶爲ubuntu 在SUSE,默認用戶是root

對於社區AMI,你必須檢查與AMI創建者哪些用戶配置了你的公鑰。

+0

有時對於某些AMI,默認用戶是'root' – Rico

+0

謝謝! - 編輯回答以包含您的反饋 –

相關問題