Amazon EC2 key pairs and Linux instances
A key pair, consisting of a public key and a private key, is a set of security credentials that you use to prove your identity when connecting to an Amazon EC2 instance. Amazon EC2 stores the public key on your instance, and you store the private key. For Linux instances, the private key allows you to securely SSH into your instance. Anyone who possesses your private key can connect to your instances, so it's important that you store your private key in a secure place.
When you launch an instance, you are prompted
for a key pair. If you plan to connect to the instance using SSH, you
must specify a key pair. You can choose an existing key pair or create a new one.
When your instance boots for the first time, the public key that you specified at
launch is placed on your Linux instance in an entry within
~/.ssh/authorized_keys. When you connect to your Linux instance using
SSH, to log in you must specify the private key that corresponds to the public key.
For more
information about connecting to your instance, see Connect to your Linux instance. For more information about key pairs and Windows
instances, see Amazon EC2 key pairs and Windows instances in the
Amazon EC2 User Guide for Windows Instances.
Because Amazon EC2 doesn't keep a copy of your private key, there is no way to recover a private key if you lose it. However, there can still be a way to connect to instances for which you've lost the private key. For more information, see Connect to your Linux instance if you lose your private key.
You can use Amazon EC2 to create your key pairs. You can also use a third-party tool to create your key pairs, and then import the public keys to Amazon EC2.
The keys that Amazon EC2 uses are ED25519 or 2048-bit SSH-2 RSA keys.
You can have up to 5,000 key pairs per Region.
Contents
- Create a key pair using Amazon EC2
- Create a key pair using a third-party tool and import the public key to Amazon EC2
- Tag a public key
- Retrieve the public key from the private key
- Retrieve the public key through instance metadata
- Locate the public key on an instance
- Identify the key pair that was specified at launch
- Verify your key pair's fingerprint
- Add or replace a key pair for your instance
- Delete your key pair
- Delete a public key from an instance
- Connect to your Linux instance if you lose your private key
Create a key pair using Amazon EC2
You can create a key pair using one of the following methods.
Create a key pair using a third-party tool and import the public key to Amazon EC2
Instead of using Amazon EC2 to create your key pair, you can create an RSA or ED25519 key pair by using a third-party tool, and then import the public key to Amazon EC2.
Requirements for key pairs
-
Supported types: RSA and ED25519. Amazon EC2 does not accept DSA keys.
-
Note that ED25519 keys are not supported for Windows instances, EC2 Instance Connect, and EC2 Serial Console.
-
-
Supported formats:
-
OpenSSH public key format (the format in
~/.ssh/authorized_keys). If you connect using SSH while using the EC2 Instance Connect API, the SSH2 format is also supported. -
SSH private key file format must be PEM
-
(RSA only) Base64 encoded DER format
-
(RSA only) SSH public key file format as specified in RFC 4716
-
-
Supported lengths: 1024, 2048, and 4096. If you connect using SSH while using the EC2 Instance Connect API, the supported lengths are 2048 and 4096.
To create a key pair using a third-party tool
-
Generate a key pair with a third-party tool of your choice. For example, you can use ssh-keygen (a tool provided with the standard OpenSSH installation). Alternatively, Java, Ruby, Python, and many other programming languages provide standard libraries that you can use to create an RSA or ED25519 key pair.
Important The private key must be in the PEM format. For example, use
ssh-keygen -m PEMto generate the OpenSSH key in the PEM format. -
Save the public key to a local file. For example,
~/.ssh/my-key-pair.pub. The file name extension for this file is not important. -
Save the private key to a local file that has the
.pemextension. For example,~/.ssh/my-key-pair.pem.Important Save the private key file in a safe place. You'll need to provide the name of your public key when you launch an instance, and the corresponding private key each time you connect to the instance.
After you have created the key pair, use one of the following methods to import your public key to Amazon EC2.
Tag a public key
To help categorize and manage the public keys that you've either created using Amazon EC2 or imported to Amazon EC2, you can tag them with custom metadata. For more information about how tags work, see Tag your Amazon EC2 resources.
You can view, add, and delete tags using one of the following methods.
Retrieve the public key from the private key
On your local Linux or macOS computer, you can use the ssh-keygen
command to retrieve the public key for your key pair. Specify the path where you downloaded
your private key (the .pem file).
ssh-keygen -y -f /path_to_key_pair/my-key-pair.pem
The command returns the public key, as shown in the following example.
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQClKsfkNkuSevGj3eYhCe53pcjqP3maAhDFcvBS7O6V
hz2ItxCih+PnDSUaw+WNQn/mZphTk/a/gU8jEzoOWbkM4yxyb/wB96xbiFveSFJuOp/d6RJhJOI0iBXr
lsLnBItntckiJ7FbtxJMXLvvwJryDUilBMTjYtwB+QhYXUMOzce5Pjz5/i8SeJtjnV3iAoG/cQk+0FzZ
qaeJAAHco+CY/5WrUBkrHmFJr6HcXkvJdWPkYQS3xqC0+FmUZofz221CBt5IMucxXPkX4rWi+z7wB3Rb
BQoQzd8v7yeb7OzlPnWOyN0qFU0XA246RA8QFYiCNYwI3f05p6KLxEXAMPLE
If the command fails, run the following command to ensure that you've changed the permissions on your private key pair file so that only you can view it.
chmod 400my-key-pair.pem
Retrieve the public key through instance metadata
The public key that you specified when you launched an instance is also available through the instance metadata. To view the public key that you specified when launching the instance, use the following command from your instance.
If you change the key pair that you use to connect to the instance, we don't update the instance metadata to show the new public key. Instead, the instance metadata continues to show the public key for the key pair that you specified when you launched the instance. For more information, see Retrieve instance metadata.
Locate the public key on an instance
When you launch an instance, you are prompted for a key pair. If you plan to connect to the instance using
SSH, you must specify a key pair. When your instance boots for the first time,
the content of the public key that you specified at launch is placed on your Linux
instance in
an entry within ~/.ssh/authorized_keys.
To locate the public key on an instance
-
In the terminal window, open the
authorized_keysfile using your favorite text editor (such as vim or nano).[ec2-user ~]$nano ~/.ssh/authorized_keysThe
authorized_keysfile opens, displaying the public key followed by the name of the key pair. The following is an example entry for the key pair namedmy-key-pair.ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQClKsfkNkuSevGj3eYhCe53pcjqP3maAhDFcvBS7O6V hz2ItxCih+PnDSUaw+WNQn/mZphTk/a/gU8jEzoOWbkM4yxyb/wB96xbiFveSFJuOp/d6RJhJOI0iBXr lsLnBItntckiJ7FbtxJMXLvvwJryDUilBMTjYtwB+QhYXUMOzce5Pjz5/i8SeJtjnV3iAoG/cQk+0FzZ qaeJAAHco+CY/5WrUBkrHmFJr6HcXkvJdWPkYQS3xqC0+FmUZofz221CBt5IMucxXPkX4rWi+z7wB3Rb BQoQzd8v7yeb7OzlPnWOyN0qFU0XA246RA8QFYiCNYwI3f05p6KLxEXAMPLE my-key-pair
Identify the key pair that was specified at launch
When you launch an instance, you are prompted for a key pair. If you plan to connect to the instance using SSH, you must specify a key pair.
To identify the key pair that was specified at launch
-
Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/
. -
In the navigation pane, choose Instances, and then select your instance.
-
On the Details tab, under Instance details, the Key pair name field displays the name of the key pair that you specified when you launched the instance. The value of the Key pair name does not change even if you change the public key on the instance, or add key pairs.
Verify your key pair's fingerprint
On the Key Pairs page in the Amazon EC2 console, the Fingerprint column displays the fingerprints generated from your key pairs. AWS calculates the fingerprint differently depending on whether the key pair was generated by AWS or a third-party tool. If you created the key pair using AWS, the fingerprint is calculated using an SHA-1 hash function. If you created the key pair with a third-party tool and uploaded the public key to AWS, or if you generated a new public key from an existing AWS-created private key and uploaded it to AWS, the fingerprint is calculated using an MD5 hash function.
You can use the SSH2 fingerprint that's displayed on the Key Pairs page to verify that the private key you have on your local machine matches the public key stored in AWS. From the computer where you downloaded the private key file, generate an SSH2 fingerprint from the private key file. The output should match the fingerprint that's displayed in the console.
If you're using a Windows local machine, you can run the following commands using
the
Windows Subsystem for Linux (WSL). Install the WSL and a Linux distribution using
the
instructions in the Windows 10 Installation Guide
If you created your key pair using AWS, you can use the OpenSSL tools to generate a fingerprint as shown in the following example.
$openssl pkcs8 -inpath_to_private_key-inform PEM -outform DER -topk8 -nocrypt | openssl sha1 -c
If you created a key pair using a third-party tool and uploaded the public key to AWS, you can use the OpenSSL tools to generate the fingerprint as shown in the following example.
$openssl rsa -inpath_to_private_key-pubout -outform DER | openssl md5 -c
If you created an OpenSSH key pair using OpenSSH 7.8 or later and uploaded the public key to AWS, you can use ssh-keygen to generate the fingerprint as shown in the following examples.
For RSA key pairs:
$ssh-keygen -efpath_to_private_key-m PEM | openssl rsa -RSAPublicKey_in -outform DER | openssl md5 -c
For ED25519 key pairs:
$ssh-keygen -l -fpath_to_private_key.pem
Add or replace a key pair for your instance
You can change the key pair that is used to access the default system account of your instance by adding a new public key on the instance, or by replacing the public key (deleting the existing public key and adding a new one) on the instance. You might do this for the following reasons:
-
If a user in your organization requires access to the system user account using a separate key pair, you can add the public key to your instance.
-
If someone has a copy of the private key (
.pemfile) and you want to prevent them from connecting to your instance (for example, if they've left your organization), you can delete the public key on the instance and replace it with a new one.
The public keys are located in the .ssh/authorized_keys file on the
instance.
To add or replace a key pair, you must be able to connect to your instance. If you've lost your existing private key or you launched your instance without a key pair, you won't be able connect to your instance and therefore won't be able to add or replace a key pair. If you've lost your private key, you might be able to retrieve it. For more information, see Connect to your Linux instance if you lose your private key. If you launched your instance without a key pair, you won't be able to connect to the instance unless you chose an AMI that is configured to allow users another way to log in.
These procedures are for modifying the key pair for the default user account, such
as
ec2-user. For information about adding user accounts to your instance, see
Manage user accounts on your Amazon Linux instance.
To add or replace a key pair
-
Create a new key pair using the Amazon EC2 console or a third-party tool.
-
Retrieve the public key from your new key pair. For more information, see Retrieve the public key from the private key.
-
Connect to your instance using your existing private key.
-
Using a text editor of your choice, open the
.ssh/authorized_keysfile on the instance. Paste the public key information from your new key pair underneath the existing public key information. Save the file. -
Disconnect from your instance, and test that you can connect to your instance using the new private key file.
-
(Optional) If you're replacing an existing key pair, connect to your instance and delete the public key information for the original key pair from the
.ssh/authorized_keysfile.
If you're using an Auto Scaling group, ensure that the key pair you're replacing is not specified in your launch template or launch configuration. If Amazon EC2 Auto Scaling detects an unhealthy instance, it launches a replacement instance. However, the instance launch fails if the key pair cannot be found. For more information, see Launch templates in the Amazon EC2 Auto Scaling User Guide.
Delete your key pair
When you delete a key pair using the following methods, you are only deleting the
public
key that you saved in Amazon EC2 when you created or imported the
key pair. Deleting a key pair doesn't delete the public key from any instances that
were previously launched using that key pair. It also doesn't delete the private key
on your
local computer. You can continue to connect to instances that you launched using a
key pair
that is subsequently deleted, as long as you still have the private key
(.pem) file.
To delete the public key from an instance, see Delete a public key from an instance.
If you're using an Auto Scaling group (for example, in an Elastic Beanstalk environment), ensure that the key pair you're deleting is not specified in an associated launch template or launch configuration. If Amazon EC2 Auto Scaling detects an unhealthy instance, it launches a replacement instance. However, the instance launch fails if the key pair cannot be found. For more information, see Launch templates in the Amazon EC2 Auto Scaling User Guide.
You can delete a key pair using one of the following methods.
Delete a public key from an instance
If you create a Linux AMI from an instance, the public key information is copied from the instance to the AMI. If you launch an instance from the AMI, the new instance includes the public key from the original instance. To prevent someone who has the private key from connecting to the new instance, delete the public key from the original instance before creating the AMI.
To delete a public key from an instance
-
Using a text editor of your choice, open the
.ssh/authorized_keysfile on the instance. Delete the public key information, and then save the file.
After you delete the public key from the instance and disconnect from the instance, you can't connect to it again unless the AMI provides another way of logging in.