I just signed up for Amazon's new Elastic Beanstalk offering and loving it. What I can't figure out is how to SSH to a Beanstalk instance. I don't have a private key because Beanstalk generated the instance on my behalf. Ideas?

Thanks, Benno

link|improve this question
Please accept an answer if you can, otherwise clarify what's missing and we can try to help you. – jabley Mar 8 at 16:24
feedback

4 Answers

I found it to be a 2-step process. This assumes that you've already set up a keypair to access EC2 instances in the relevant region.

Configure Security Group

  1. In the AWS console, open the EC2 tab.
  2. Select the relevant region and click on Security Group.
  3. You should have an elasticbeanstalk-default security group if you have launched an Elastic Beanstalk instance in that region.
  4. Edit the security group to add a rule for SSH access. The below will lock it down to only allow ingress from a specific IP address.

    SSH | tcp | 22 | 22 | 192.168.1.1/32
    

Configure the environment of your Elastic Beanstalk Application

  1. If you haven't made a key pair yet, make one by clicking Key Pairs below Security Group in the ec2 tab.
  2. In the AWS console, open the Elastic Beanstalk tab.
  3. Select the relevant region.
  4. Environment Details | Edit Configuration
  5. On the Server tab, put the name of your keypair in the Existing Key Pair field.

Once the instance has relaunched, you need to get the host name from the AWS Console EC2 instances tab, or via the API. You should then be able to ssh onto the server.

$ ssh -i path/to/keypair.pub ec2-user@ec2-an-ip-address.compute-1.amazonaws.com
link|improve this answer
This answer has 2x more votes than any other answer; is technically rigorous; and extremely clear. What is wrong with it? Why is it not accepted? – user1311390 May 15 at 4:34
feedback

I have been playing with this as well.

  1. goto your elastic beanstalk service tab
  2. on your application overview goto action --> edit configuration
  3. add the name of a key as it appears in your EC2 tab (for the same region) to the existing keypair box and hit apply changes

The service will be relaunched so make a coffee for 5 mins

On your ec2 tab for the same region you'll see your new running instance. ssh to the public dns name as ec2-user using the key added in 3 e.g. ssh ec2-user@ec2-xx-xxx-xx-xxx.compute-1.amazonaws.com

link|improve this answer
feedback

You should be able to do it the way jabley describes. I've written a blog post on how to get started, which covers these details, but it should be pretty straight forward. http://blog.diabol.se/?p=75.

link|improve this answer
Bring the answer, that you imply is present in your blog, in-line to the actual answer here. As it reads this feels, and reads, like self-promotion/publicising. – David Thomas Mar 7 '11 at 22:39
@David - Tommy did fully disclose himself as the author of the page. @Tommy - Please do at least summarize the link in your answer. If something happens to that link, your answer lacks context completely. – Tim Post Mar 8 '11 at 0:28
@Tim, that's entirely true; but while my comment may appear a tad adversarial that wasn't the intent. The main part of my comment was that I think @Tommy should bring the answer in-line with his answer. Though that may have been lost, following the latter sentence. Apologies for any offence caused. :) – David Thomas Mar 8 '11 at 0:33
feedback

There is a handy 'Connect' option in the 'Instance Actions' menu for the EC2 instance. It will give you the exact SSH command to execute with the correct url for the instance. Jabley's overall instructions are correct.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.