The default method to access Linux EC2 instances on AWS is via SSH, and only the public-key authentication method is configured on the EC2 instances.

The public SSH key is added automatically to the EC2 instance when created, and you should be given the SSH private key in PEM format when creating the EC2 instance. The same is true for either Red Hat or Ubuntu-based EC2 instances.

SSH client is typically included in the default installation of Linux or other Unix-based operating systems, but not so in some versions of Windows. One popular SSH client that you can use to log in to your Linux EC2 instances from Windows is PuTTY.

Steps to SSH to Linux AWS EC2 instance using PuTTY:

  1. Make sure the security group of your EC2 instance is configured to allow SSH connection from your current host, or use a VPN or proxy server if necessary.
  2. Convert the provided PEM private key file to PPK (PuTTY Private Key) format.
  3. Download PuTTY from the official website.
    https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
  4. Launch PuTTY.
  5. Enter the Host Name or IP Address of your ec2 instance.
  6. Go to ConnectionSSHAuth from the sidebar menu.
  7. Click on the Browse button to look for your PuTTY Private Key.
  8. Select your PuTTY Private Key from the stored location and click on the Open button.
  9. Click on the Open button to start the connection.
  10. Click Yes if a security alert pops up as this is your first connection to the server and the server's key fingerprint is not in your PuTTY's cache.
  11. Enter the username that you want to connect as and press enter.
  12. Enter the passphrase for the key if a passphrase protects your key.
  13. You should now are logged in using the public key authentication to the system.
Discuss the article:

Comment anonymously. Login not required.