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 | ||||
feedback
|
|
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.
| ||||
feedback
|
|
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 | ||||
|
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. | |||||||
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. | |||
|
feedback
|