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

re-add previous changes

This commit is contained in:
Scottpedia 2021-01-02 09:32:28 -05:00
parent 295e10b7c8
commit 233d3df134

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