1
0
Fork 0

facultatif ssh key

This commit is contained in:
arnaud 2024-01-02 15:50:32 +00:00
parent fbb5fda59e
commit 69be55daf2
1 changed files with 4 additions and 2 deletions

View File

@ -56,9 +56,11 @@ You will be dealing with different components:
- **security group** and **security rules** are firewall rules applied to your server
#### keypair
Generate your own SSH key:
Make sure you have a ssh key:
```
ssh-keygen -t rsa -f ~/.ssh/id_rsa -N ""
$ ls ~/.ssh/id_rsa*
# If you do not have any key there:
# ssh-keygen -t rsa -f ~/.ssh/id_rsa -N ""
# This will generate both private and public keys in ~/.ssh/ folder
```