Knowledge Base
Generating SSH Keys for you Machine
In order to generate private and public ssh keys we run this command ssh-key
- When we run
ssh-keygenwe get this prompt
Generating public/private rsa key pair.
Enter file in which to save the key (/home/username/.ssh/id_rsa):
- Now you can save the
ssh keysin.ssh/folder
Things to note:
id_rsacontains private keyid_rsa.pubcontains public keyknown hostsshows that services that uses aressh-keys.
ssh-keygen -t rsa -C "your_email@example.com" Generating ssh-keys and associating them with our email.
Home