Amazon EC2 lost private key, how to get access to the server?

18,754

Try to do like this:

Login to your AWS Management Console, in EC2 tab view, you'll find something like 1 key Pair, click it, delete your old key pair, then create new pair.


EDIT:

Got a related question HERE

What you could do, is assign one of your Elastic IP's to the instance and route traffic through that normally. Snapshot the instance and bring up a duplicate with a new Keypair. Switch the Elastic IP over to the new instance.

and HERE

The best solution we have been able to come up with is to burn an AMI from the running instance and launch a new instance from that AMI using the new key pair.

How to create your own AMI? HERE. ;)

Share:
18,754
Jason
Author by

Jason

Updated on June 14, 2022

Comments

  • Jason
    Jason almost 2 years

    My computer was stolen the day before yesterday, and I put one of my servers private key in that, the key is password protected, so it should be OK. But the problem is that now I can not access the server.

    The server is Ubuntu, Amazon EC2, Root Device: Instance Store. I've been searching this for a whole day, looks like if the server is EBS, then it will be easier to just create an image and launch a new instance. But unfortunately mine is not.

    I really hope that some one can give me an advise on how to get access to the server, my user type is root, so no one else can modify the key for me.

    I don't know if you can create private key from the public key, and I don't know if you can actually get the public key from Amazon EC2. Please help.

    Thank you very much!

  • Jason
    Jason almost 12 years
    Thanks for you reply. Of course you can delete one key pair and create a new one. But you cannot assign a new key pair to a running instance. Unless I missed something.
  • Kjuly
    Kjuly almost 12 years
    @Jason yes you're right, I just got some related QAs, see the new version of answer