Files
grecia/docs/en/getting_started/generating_ssh_key.md
2019-04-01 20:03:12 +02:00

19 lines
669 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Generating your SSH keys
These instructions will help you generate a public key with which you can connect to the server without using a password.
In the terminal window, type:
```
ssh-keygen
```
When prompted for the file in which to save the key just press ENTER to leave the default. When prompted for a passphrase, just press ENTER again to leave this empty. At the end you should see a message like this:
```
Your identification has been saved in /your_home/.ssh/id_rsa.
Your public key has been saved in /your_home/.ssh/id_rsa.pub.
```
Take note of the **id_rsa.pub** file location, because youll need the content of this file later.