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
|
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 |
|||||||||
|
|
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
Configure the environment of your Elastic Beanstalk Application
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.
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. |
|||||||||||||||||
|
|
I have been playing with this as well.
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 |
||||
|
|
|
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. |
|||
|
|
|
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. |
|||||||||
|