通过ssh访问aws时权限被拒绝(publickey)

时间:2017-02-18 17:49:54

标签: amazon-web-services ssh amazon-ec2

我正试图通过我的电脑上的ssh连接到我的ec-2免费(t2.micro)实例。

我用默认的VPC创建了实例。我无法从我的电脑上连接它。

这是我拒绝许可的错误。

我已检查过安全组中的规则。

我已经通过以下网址检查答案,但没有成功。

AWS SSH connection error: Permission denied (publickey)

Troubleshooting Connecting to Your Instance

SSH: Permission denied (publickey)

当我在命令

下运行时
sudo ssh -v -i tep-keyPair.pem ubuntu@ec2-52-XX-XXX-XX.us-west-2.compute.amazonaws.com

出现以下错误:

OpenSSH_7.3p1, LibreSSL 2.4.1
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 20: Applying options for *
debug1: Connecting to ec2-52-XX-XXX-XX.us-west-2.compute.amazonaws.com [52.XX.XXX.XX] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: key_load_public: No such file or directory
debug1: identity file tep-keyPair.pem type -1
debug1: key_load_public: No such file or directory
debug1: identity file tep-keyPair.pem-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.3
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.6.1
debug1: match: OpenSSH_6.6.1 pat OpenSSH_6.6.1* compat 0x04000000
debug1: Authenticating to ec2-52-XX-XXX-XX.us-west-2.compute.amazonaws.com:22 as 'ubuntu'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: kex: client->server cipher: chacha20-poly1305@openssh.com MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ecdsa-sha2-nistp256                 SHA256:ZeJ4XQUfgLkaMUEvjGohL/6FWKN9Gq4AXrPwL/i9t3M
debug1: Host 'ec2-52-XX-XXX-XX.us-west-2.compute.amazonaws.com' is  known and matches the ECDSA host key.
debug1: Found key in /var/root/.ssh/known_hosts:3
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: tep-keyPair.pem
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).

请帮助我..我真的被困在这里

1 个答案:

答案 0 :(得分:2)

您收到Permission denied (publickey)错误的事实表明您已成功与实例通信,因此问题与网络或安全组无关。

相反,实例不接受通过您提供的密钥对的连接。因此,您需要为其提供预期的密钥对,或者您可以将新密钥对复制到实例

要将不同的密钥对复制到实例,请按照针对Ubuntu编写的StackOverflow应答的说明进行操作:Change key pair for ec2 instance