SSH to Amazon EC2 instance using Putty in windows

五迷三道 提交于 2019-12-02 15:50:06

I assume that the OP figured this out or otherwise moved on, but the answer is to use ubuntu as the user (if the server is ubuntu).

shashankaholic

1) Make sure you have port 22 (SSH) opened in Security Group of EC2 Instance.

2) Try connecting with Elastic IP instead of public DNS name.

I hope you have followed these steps Connecting EC2 from a Windows Machine Using PuTTY

Another situation where I got the "Server refused our key" error when using putty, from windows, to ssh to an EC2 instance running ubuntu:

The private key was wrongly converted from .pem to .ppk.

puttygen has two options for "converting keys".

  1. Load your .pem file into puttygen using the File->Load Private Key option and then save as .ppk file using the Save Private Key Button.
  2. DO NOT use the menu option Conversions->Import Key to load the .pem file generated by EC2.

    See the puttygen screenshots below, with the two menu options marked.

Check the username, it should be "ubuntu" for your machine. Check if traffic is enabled on port 22 in Security group. Check if you are using the correct url i.e ubuntu@public/elasticip

Maybe worth of checking one more thing. Go to AWS console, right mouse click on the instance and choose "Connect...". It will show you the DNS name that you want to use. If you restarted that instance at some point, that DNS name could have changed.

I had a similar problem when I tried to connect an instance created automatically by the Elastic Beanstalk service (EBS). But, once I linked my existing key name to the EBS (under Environment Details -> Edit Configuration -> Server Tab -> Existing Key Pair), I was able to login with 'ec2-user' and my existing key file (converted to .ppk) with putty.

This, however, terminates the running instance and rebuilds a new instance with access through the key pair named above.

Just in case it helps anyone else, I encountered this error after changing the permissions on the home folder within my instance. I was testing something and had executed chmod -R 777 on my home folder. As soon as this had occurred, once I had logged out I was effectively locked out.

I assume you're following this guide, and connecting using the instructions on the subsequent page. Verify a couple of things:

  1. You converted the key correctly, e.g. selected the right .pem file, saved as private key, 1024-bit SSH-2 RSA
  2. The Auth settings (step 4 in the connection tutorial) are correct

I was having the same trouble (and took the same steps) until I changed the user name to 'admin' for the debian AMI I was using.

You should lookup the user name ofthe AMI you are using. The debian AMI is documented here http://wiki.debian.org/Cloud/AmazonEC2Image/Squeeze

I have had this same problem. The AMI you are using is the one that is also used by the "Cloud Formation" templating solution.

In the end I gave up with that, and created a Red Hat instance. I was then able to connect by SSH fine using the user root.

The instructions here: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/putty.html work fine using a Red Hat instance but not using an Amazon Linux instance. I assume they have some username that I didn't think to try (root, ec2-user, and many other obvious ones, all were refused)

Hope that helps someone!

I use Debain AMI and I try ec2-user, root but correct login is 'admin'.

nomadic_squirrel

I was getting the same error when I tried to create a new key pair and tried to use that new pem/ppk file. I noticed that the Key Pair Name field on the instance was still the old one and in poking around. Apparently, you can't change a key pair. So I went back to the original key pair. Fortunately, I didn't delete anything so this was easy enough.

Barak

Try an alternative SSH client, like Poderosa. It accepts pem files, so you will not need to convert the key file.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!