2

bitami AMI を使用して EC2 インスタンスを作成しました。ec2-add-keypair ユーティリティを使用して ec2 キーペアを作成しました

私が試したときssh -i id_rsa-my-keypair bitami@<myinstance> -v

次のエラーが発生しました

debug1: ssh_ecdsa_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: settwo_05012012.pem
debug1: Authentications that can continue: publickey
debug1: Trying private key: id_rsa-my-keypair
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 ami と同じキーペアを使用して別のインスタンスを作成しようとしたことです。問題なく入ることができました。すでにポート 22 の問題を除外しています。どうしてもこのビタミを使いたい。助けていただければ幸いです。

ssh構成のいくつかの行を次に示します

cat ssh_config|grep -v "#"

Host *
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes
    GSSAPIDelegateCredentials no
4

1 に答える 1

0

これを試してください: ssh -i id_rsa-my-keypair bitnami@myinstance -v

ユーザーはbitami ではなく bitnami である必要があります。

于 2014-03-27T18:39:30.903 に答える