1
0
Fork 0
mirror of synced 2025-04-05 14:13:37 +03:00

Update README.md

- add instructions to change permission of private key file.
This commit is contained in:
S. X. Liang 2021-01-02 09:19:41 -05:00 committed by GitHub
parent 44af8ea282
commit 2babb04242
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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