web-dev-qa-db-ja.com

権限が拒否されました(公開鍵)Amazon Linux AWS

AWSで2つのインスタンスを実行しています。両方に同じキーペアがあります。両方のインスタンスを長い間使用していました。しかし、このコマンドを実行すると、ターミナルからログインしようとすると、1つのインスタンスでエラーが発生します。

ssh -i mypem.pem [email protected]
Permission denied (publickey).

しかし、同じpemファイルを使用して他のインスタンスにログインしようとすると、動作し、正常にログインできます。

私はすべての解決策を試しました

しかし、私には何もうまくいきません

私が行った場合

ssh -i mypem.pem [email protected] -v

結果は次のとおりです。

OpenSSH_7.4p1, LibreSSL 2.5.0
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Connecting to 52.xx.xxx.xxx [52.xx.xxx.xxx] port 22.
debug1: Connection established.
debug1: key_load_public: No such file or directory
debug1: identity file mypem.pem type -1
debug1: key_load_public: No such file or directory
debug1: identity file mypem.pem-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.4
debug1: Remote protocol version 2.0, remote software version OpenSSH_7.4
debug1: match: OpenSSH_7.4 pat OpenSSH* compat 0x04000000
debug1: Authenticating to 52.xx.xxx.xxx as 'ec2-user'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256
debug1: kex: Host key algorithm: ecdsa-sha2-nistp256
debug1: kex: server->client cipher: [email protected] MAC: <implicit> compression: none
debug1: kex: client->server cipher: [email protected] MAC: <implicit> compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server Host key: mykeyhere
debug1: Host '52.xx.xxx.xxx' is known and matches the ECDSA Host key.
debug1: Found key in /Users/myusername/.ssh/known_hosts:6
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: rekey after 134217728 blocks
debug1: SSH2_MSG_EXT_INFO received
debug1: kex_input_ext_info: server-sig-algs=<rsa-sha2-256,rsa-sha2-512>
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/myusername/.ssh/mypem.pem
debug1: Authentications that can continue: publickey
debug1: Trying private key: mypem.pem
debug1: Authentications that can continue: publickey
debug1: No more authentication methods to try.
Permission denied (publickey).

私が試したこと

chmod 400 mypem.pem

私もこれを試しました

Sudo ssh -i amazonec2.pem ec2-xxx-xxx-xxx-xxx.us-west 2.compute.amazonaws.com

これを得ました

Please login as the user "ec2-user" rather than the user "root"

それから私はこれをやった

Sudo ssh -i amazonec2.pem ec2-xxx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com -l ec2-user

わかった

権限が拒否されました(公開鍵)

同じキーで他のインスタンスにログインしようとした場合。ログインできました。ここで実際にうまくいかなかったことを助けてください

私のインスタンスのセキュリティグループは次のとおりです。

5

Amazon Linuxを実行していない場合は、特定のOSのユーザー名(ec2-user)を変更する必要があります。

私の場合、Ubuntuサーバーを使用しており、[email protected]を使用して接続しています。

1
Potenciano