Skip to content
Snippets Groups Projects
Commit 87788901 authored by Jan Siwiec's avatar Jan Siwiec
Browse files

Update ssh-keys.md

parent c968373a
No related branches found
No related tags found
No related merge requests found
Pipeline #36895 failed
......@@ -14,6 +14,26 @@ local $ ssh-keygen -C 'username@organization.example.com' -f additional_key
By default, your private key is saved to the `id_rsa` file in the `.ssh` directory
and your public key is saved to the `id_rsa.pub` file.
## Adding SSH Key to your linux system SSH Agent
1. Check if SSH Agent is running:
```
eval "$(ssh-agent -s)"
```
1. Add the key to SSH Agent:
```
ssh-add ~/.ssh/name_of_your_ssh_key_file
```
1. Verify the key Added to SSH Agent:
```
ssh-add -l
```
## Managing Your SSH Key
To manage your SSH key for authentication to clusters, see the [SSH Key Management][1] section.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment