Amazon EC2 で Ubuntu 12.04 インスタンスを作成しました。
PEM ファイルをダウンロードし、インスタンスに SSH で接続できました。問題ありません。
ここで、コンサルタントなどのためにリモート インスタンスにいくつかのアカウントを作成したいと考えています。コンサルタントは、RSA キーを使用してボックスに ssh できるはずです。EC2 マシンで、~/home/ にいくつかのアカウントをセットアップし、それらをグループ管理者に割り当てました。テスト用に同様のアカウント (MyTestAccount) も用意しました。これは私がしたことです:
key-gen を使用して、ローカル マシンの .ssh ディレクトリ (~/.ssh) に公開鍵と秘密鍵を作成しました。
drwx------ 2 peter peter 1024 Sep 14 10:23 .ssh
そして内部のファイル:
-rw------- 1 peter peter 1675 Sep 14 10:23 id_rsa
-rw------- 1 peter peter 394 Sep 14 10:23 id_rsa.pub
-rw------- 1 peter peter 444 Sep 14 00:05 known_hosts
次に、id_rsa.pub ファイルをリモート EC2 インスタンスに SCP し、それをリモート インスタンスの .ssh/authorized_keys ファイルに追加しました。リモート .ssh ディレクトリのアクセス許可:
drwx------ 2 ubuntu ubuntu 4096 Sep 16 16:13 .ssh
そして、私のauthorized_keysファイルの:
-rw------- 1 peter ubuntu 1179 Sep 14 00:05 authorized_keys
次に、リモート インスタンスからログオフし、新しいキーを使用してリモート ボックスへの SSH を試みました。次のコマンドを発行すると:
peter@ubuntu:~/.ssh$ ssh -vvv MyTestAccount@ec2-XX-XXX-XX-XXX.compute-1.amazonaws.com
私は以下を取得します。秘密鍵に何か問題があるように見えますか? 助言がありますか?ありがとう。
OpenSSH_5.9p1 Debian-5ubuntu1, OpenSSL 1.0.1 14 Mar 2012
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: ssh_connect: need priv 0
debug1: Connecting to ec2-XX-XXX-XX-XXX.compute-1.amazonaws.com [XX.XXX.XX.XXX] port 22.
debug1: Connection established.
debug3: Incorrect RSA1 identifier
debug3: Could not load "/home/peter/.ssh/id_rsa" as a RSA1 public key
debug1: identity file /home/peter/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/peter/.ssh/id_rsa-cert type -1
debug1: identity file /home/peter/.ssh/id_dsa type -1
debug1: identity file /home/peter/.ssh/id_dsa-cert type -1
debug1: identity file /home/peter/.ssh/id_ecdsa type -1
debug1: identity file /home/peter/.ssh/id_ecdsa-cert type -1
[をちょきちょきと切る...]
debug2: we sent a publickey packet, wait for reply
debug1: Authentications that can continue: publickey
debug1: Trying private key: /home/peter/.ssh/id_dsa
debug3: no such identity: /home/peter/.ssh/id_dsa
debug1: Trying private key: /home/peter/.ssh/id_ecdsa
debug3: no such identity: /home/peter/.ssh/id_ecdsa
debug2: we did not send a packet, disable method
debug1: No more authentication methods to try. **Permission denied (publickey).**