0

Elastic Beanstalk으로 새 응용 프로그램을 설정했습니다. 지침은 here입니다.
이제 에 대한 액세스는 EC2 서버의 ssh을 통해 이루어집니다. 나는 어떤 키 쌍도 가지고 있지 않았기 때문에 새로운 키 쌍을 생성했지만 여전히 얻을 수있다. Permission denied (publickey).Elastic Beanstalk을 사용하여 생성 할 때 AWS EC2 .pem 인증서

SSH 추적 :

$ ssh -v -i ~/.ec2/my.pem [email protected] 
OpenSSH_5.6p1, OpenSSL 0.9.8y 5 Feb 2013 
debug1: Reading configuration data /Users/sergey/.ssh/config 
debug1: Reading configuration data /etc/ssh_config 
debug1: Applying options for * 
debug1: Connecting to ec2-54-215-179-79.us-west-1.compute.amazonaws.com [54.215.179.79] port 22. 
debug1: Connection established. 
debug1: identity file /Users/sergey/.ec2/my.pem type -1 
debug1: identity file /Users/sergey/.ec2/my.pem-cert type -1 
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3 
debug1: match: OpenSSH_5.3 pat OpenSSH* 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_5.6 
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: Host 'ec2-54-215-179-79.us-west-1.compute.amazonaws.com' is known and matches the RSA host key. 
debug1: Found key in /Users/sergey/.ssh/known_hosts:26 
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/sergey/.ssh/id_rsa 
debug1: Authentications that can continue: publickey 
debug1: Trying private key: /Users/sergey/.ec2/my.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). 

당신은 내가 잘못 뭘하는지 좀 도와 주 시겠어요.

+1

키를 사용하도록 Elastic Beanstalk을 어떻게 구성 했습니까? 여기에 설명 된 모든 단계를 수행 했습니까? http://stackoverflow.com/questions/4742478/ssh-to-elastic-beanstalk-instance? –

답변

-1

왜 beanstalk을 사용할 때 ec2 인스턴스로 ssh하고 싶습니까? 인스턴스를 만들고 env를 설정하고 코드를 배포하여 앱과 기본 OS를보다 잘 제어 할 수 있도록 해보는 것이 좋습니다.

+0

이전에 콩기름을 사용 했습니까? 무엇을 제안 할 수 있습니까? 좋은 가이드가 있었기 때문에 그것을 사용했고 AWS에 Rails를 배치하는 것에 대한 Google 검색 응답의 첫 번째 결과였습니다. –

+0

레일 스택에 루비를 넣기 전에 콩팥 껍질을 사용했습니다. 루비에 대한 PaaS 제공 업체를 찾고 있다면 나는 heroku 다음 beanstalk를 제안합니다. 주어진 시점에서 EC2는 더 나은 선택입니다. 실험적인 프로젝트가 heroku를 위해 간다면 EC2에서도 호스팅됩니다 –

관련 문제