Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
8  
Please accept an answer if you can, otherwise clarify what's missing and we can try to help you. – jabley Mar 8 '12 at 16:24
1  
@Benno, by accepting the answer below, you will free up this question from the "unanswered" list and help your fellow stackOverflow peeps who enjoy answering unanswered questions. Please help us out. Thanks! – WattsInABox Jan 24 at 22:09

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

Note: For adding a keypair to the environment configuration, the instances' termination protection must be off as Beanstalk would try to terminate the current instances and start new instances with the KeyPair.

Note: If something is not working, check the "Events" tab in the Beanstalk application / environments and find out what went wrong.

share|improve this answer
2  
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 '12 at 4:34
2  
If you get the error "Permission denied (publickey)" even though you followed the instructions above, the following might explain why: If your EB setup launches more than one EC2 instance, you have to check which of them gets the key pair associated with it. You can only SSH to the instance with the key pair. You can inspect the properties in the EC2 instance menu to find out. – Per Quested Aronsson Oct 10 '12 at 8:22
Upon configuring my Beanstalk application to include a Key Pair from EC2, it said "Changes to option EC2KeyName settings will not take effect immediately. Each of your existing EC2 instances will be replaced and your new settings will take effect then."...... However, i don't see that any of my EC2 instances have changed..... waited for about 10 minutes. The states of the EC2 instances are still at the Green Running signal. I have been refreshing the instances several times but the value of "Key Pair Name" is still blank. Waited for about 10 minutes.... Am i missing anything? – syedrakib Feb 23 at 19:31
got it..... i had my instance's termination protection on..... found that out through the BeanStalk Environment 'Events' tab – syedrakib Feb 23 at 20:03
1  
@jabley Just a question, in step 5 ("put the name of your keypair"), isn't possible to add more than one keypairs? I mean, more than one sysadmin or even if I need to connect from another computer. – Daniel Dener Mar 11 at 18:22
show 1 more comment

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

share|improve this answer

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.

share|improve this answer

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.

share|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
2  
@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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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