Our proud SaaS cloud development environment runcode.io
Amazon Web Services

How to Access EC2 Instance even if PEM File is Lost

2022-07-19

Amazon Web Service is the market leader for cloud systems, giving an option to select specific AWS professional services with in their budget. EC2 instance can help in data recovery and many such features, makes AWS best in this trending cloud environment.

Accessing the EC2 instance even if you loose the pem file is rather easy.

  1. First, create a new instance by creating new access file, call it 'helper' instance with same region and VPC as of the lost pem file instance.
  2. Now stop the lost pem file instance. Remember not to terminate instance but to stop it.
  3. Goto EBS volumes, select the root volume of the lost pem file instance and detach.
  4. Now again select the detached volume and this time you have to attach this volume to helper instance which we created before. Since helper instance already has a root volume by default as /dev/sda1, the newly attached volume will be secondary(eg: /dev/sdf).
  5. Login to your helper instance with its pem file.
  6. Execute below commands:

aws-mp-banner
# mount /dev/xvdf1 /mnt
# cp /root/.ssh/authorized_keys /mnt/root/.ssh/
# umount /mnt
  1. Detach the secondary volume from helper instance. 
  2. Again attach the volume back to our recovery instance. Start the instance. Terminate the helper instance.

Use helper instance pem file to log into recovery instance.