Amazon EC2上的权限被拒绝(公钥)

时间:2012-08-28 10:24:25

标签: ssh amazon-ec2 public-key

这是我的问题。

  1. 我创建了一个新实例,使用另一个实例的相同密钥对。

  2. SSH到新实例,运行正常。

  3. 我终止旧实例。

  4. 当我用密钥连接到我的新实例时,它就出现了问题。

    OpenSSH_5.6p1, OpenSSL 0.9.8r 8 Feb 2011
    debug1: Reading configuration data /etc/ssh_config
    debug1: Applying options for *
    debug1: Connecting to ec2-176-34-8-64.ap-northeast-1.compute.amazonaws.com [176.34.8.64]         port 22.
    debug1: Connection established.
    debug1: identity file foobar.pem type -1
    debug1: identity file foobar.pem-cert type -1
    debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
    debug1: match: OpenSSH_5.3 pat OpenSSH*
    debug1: Enabling compatibility mode for protocol 2.0
    debug1: Local version string SSH-2.0-OpenSSH_5.6
    debug1: SSH2_MSG_KEXINIT sent
    debug1: SSH2_MSG_KEXINIT received
    debug1: kex: server->client aes128-ctr hmac-md5 none
    debug1: kex: client->server aes128-ctr hmac-md5 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: Host 'ec2-176-34-8-64.ap-northeast-1.compute.amazonaws.com' is known and matches the RSA host key.
    debug1: Found key in /Users/xudannie/.ssh/known_hosts:12
    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/xudannie/.ssh/id_rsa
    debug1: Authentications that can continue: publickey
    debug1: Trying private key: foobar.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).
    

    所以我检查了其他答案,也许我应该创建一个新实例并挂载这个实例来添加公钥。这是解决问题的唯一方法吗?

    感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

不确定是否对其进行了排序,但对私钥的权限可能会在没有任何进一步说明的情况下给出错误。我知道你在这种特殊情况下可能没有改变文件权限。

但是,如果是这样的话,只需sudo chmod 600 ~/.ssh/your_private_key 特别是在windows环境中的putty似乎只是拒绝访问,linux通常会告诉你更改权限。