1

github や heroku では通常問題はありませんが、SSH を使用して AWS に接続できないようです。デバッグは以下のとおりです。@ubuntu と @ec2-user (@ubuntu である必要があります) を試しました。また、.ssh (Windows の場合) で構成ファイルを作成し、「ChallengeResponseAuthentication yes」を追加しようとしました。別のスレッドで修正しますが、うまくいきません。.pem ファイルのアクセス許可を 400 に変更しました。すべてが肯定的に聞こえるのに失敗する理由がわかりません。エラーが何であるかをよりよく理解できれば、解決策を見つけることができるかもしれません。 . どんな助けでも大歓迎です!

$ ssh -v -i futurebot2.pem ubuntu@ec2-54-218-75-37.us-west-2.compute.amazonaws.com
OpenSSH_6.2p2, OpenSSL 1.0.1e 11 Feb 2013
debug1: Reading configuration data /home/Mark/.ssh/config
debug1: Connecting to ec2-54-218-75-37.us-west-2.compute.amazonaws.com [54.218.75.37] port 22.
debug1: Connection established.
debug1: identity file futurebot2.pem type -1
debug1: identity file futurebot2.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_5.9p1 Debian-5ubuntu1
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1 pat OpenSSH_5*
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: sending SSH2_MSG_KEX_ECDH_INIT
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ECDSA f2:cd:94:4d:a1:9a:b5:67:cb:f7:91:d7:ef:4d:a4:3d
debug1: Host 'ec2-54-218-75-37.us-west-2.compute.amazonaws.com' is known and matches the ECDSA host key.
debug1: Found key in /home/Mark/.ssh/known_hosts:1
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: Trying private key: futurebot2.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).
4

1 に答える 1

2

これが発生する理由は 2 つあります。

  1. ユーザーが存在しません。これは、間違ったユーザーまたは自分のものではないインスタンス (間違った IP アドレス) に接続したことが原因である可能性があります

  2. ユーザーは、許可された鍵ファイルにあなたの鍵を持っていません。AWS では、起動時に選択したキーがインスタンスに追加されますが、他のキーを使用する場合は、authorized_keys手動でファイルに追加する必要があります。

于 2013-06-24T23:55:17.140 に答える