From 2babb04242c3cfe1379a459969dedc028df43a5e Mon Sep 17 00:00:00 2001 From: "S. X. Liang" <60531983+Scottpedia@users.noreply.github.com> Date: Sat, 2 Jan 2021 09:19:41 -0500 Subject: [PATCH] Update README.md - add instructions to change permission of private key file. --- aws/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/aws/README.md b/aws/README.md index 0f453ee..3f5f7f7 100644 --- a/aws/README.md +++ b/aws/README.md @@ -59,10 +59,15 @@ For the private key(aka "Key pair"), this template generates one for you during You will need to save the private key from the **Outputs** tab to a file on your computer, if you want to access the VPN server via SSH. -> **Note:** You may need to format the private key by replacing all spaces with newlines, before saving to a file. +> **Note:** You may need to format the private key by replacing all spaces with newlines, before saving to a file. The file also needs to be set with [proper permission](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/connection-prereqs.html#connection-prereqs-private-key) before it can be used by SSH client. ![Show key](show-key.png) +To add proper permissions to your private key file, run the following command under the directory where the file is located: +```bash +sudo chmod 400 my-key-pair.pem +``` + As a result, the command to login to your instance should look like: ```bash $ ssh -i path/to/your/key.pem instance-username@instance-ip-address