2013-05-07 3 views
2

EC2 인스턴스에 연결하려고하는데 다음 오류가 발생합니다. 내가 실행 해요AWS 권한 거부 (공개 키)

명령 : ssh를 -v -i key.pem 우분투 @ [내 인스턴스 주소]

는 내가 다른 스레드에서 보았 듯이 (600)에 키 파일에 대한 권한을 변경하지만, 그 문제를 해결하지 못했습니다.

내가 갖는 출력 : 관리

OpenSSH_5.9p1, OpenSSL 0.9.8r 8 Feb 2011 
debug1: Reading configuration data /etc/ssh_config 
debug1: /etc/ssh_config line 20: Applying options for * 
debug1: Connecting to ec2-54-247-2-128.eu-west-1.compute.amazonaws.com [54.247.2.128] port 22. 
debug1: Connection established. 
debug1: identity file /Users/avimeir/.ssh/id_rsa type 1 
debug1: identity file /Users/avimeir/.ssh/id_rsa-cert type -1 
debug1: identity file /Users/avimeir/.ssh/id_dsa type -1 
debug1: identity file /Users/avimeir/.ssh/id_dsa-cert type -1 
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9p1 Debian-5ubuntu1 
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1 pat OpenSSH* 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_5.9 
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: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent 
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP 
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent 
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY 
debug1: Server host key: RSA ae:42:29:3d:3e:c0:a8:04:7f:19:9c:c0:52:00:a4:1e 
debug1: Host 'ec2-54-247-2-128.eu-west-1.compute.amazonaws.com' is known and matches the RSA host key. 
debug1: Found key in /Users/avimeir/.ssh/known_hosts:4 
debug1: ssh_rsa_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: /Users/avimeir/.ssh/id_rsa 
debug1: Authentications that can continue: publickey 
debug1: Offering RSA public key: ninja.pem 
debug1: Authentications that can continue: publickey 
debug1: Trying private key: /Users/avimeir/.ssh/id_dsa 
debug1: No more authentication methods to try. 
Permission denied (publickey). 

답변

2

이 (OSX)에 편집을/etc/ssh_config를하여 해결하고 다음 줄을 추가 :

ChallengeResponseAuthentication yes 
6

것이 확인하십시오 :

  1. 는 SSH 키 쌍 파일

  2. 사용자 이름. 예 : root, ec2-user, 우분투, ...

  3. 서버의 호스트 이름. 예를 들어, 인스턴스를 중지하면 새 IP 주소가 부여됩니다.

우분투 클라우드 게스트 공식 이미지를 사용하는 경우 Ubuntu EC2 Starter's Guide을 확인할 수 있습니다.

+0

+1 감사합니다. pd : 왜 그들은 단일 사용자 이름으로 모든 사용자를 호출하지 않는 것일까 요? – BlaShadow

관련 문제