mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00

* removed korean documentation Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * removed CN and KOR readme Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * changed to the press theme Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * first changes Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * fixe H3 vs H1 issues Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * added missing png Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * added missing file Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * fixed warnings Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * moved documents Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * removed obsolete files Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * removed obsolete folder Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * removed obs. file Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * added some final changes Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * removed obs. reference Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
42 lines
1.1 KiB
Markdown
42 lines
1.1 KiB
Markdown
<!---
|
|
Copyright © 2020 Interplanetary Database Association e.V.,
|
|
Planetmint and IPDB software contributors.
|
|
SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
Code is Apache-2.0 and docs are CC-BY-4.0
|
|
--->
|
|
|
|
# Generate a Key Pair for SSH
|
|
|
|
This page describes how to use `ssh-keygen`
|
|
to generate a public/private RSA key pair
|
|
that can be used with SSH.
|
|
(Note: `ssh-keygen` is found on most Linux and Unix-like
|
|
operating systems; if you're using Windows,
|
|
then you'll have to use another tool,
|
|
such as PuTTYgen.)
|
|
|
|
By convention, SSH key pairs get stored in the `~/.ssh/` directory.
|
|
Check what keys you already have there:
|
|
```text
|
|
ls -1 ~/.ssh/
|
|
```
|
|
|
|
Next, make up a new key pair name (called `<name>` below).
|
|
Here are some ideas:
|
|
|
|
* `aws-bdb-2`
|
|
* `tim-bdb-azure`
|
|
* `chris-bcdb-key`
|
|
|
|
Next, generate a public/private RSA key pair with that name:
|
|
```text
|
|
ssh-keygen -t rsa -C "<name>" -f ~/.ssh/<name>
|
|
```
|
|
|
|
It will ask you for a passphrase.
|
|
You can use whatever passphrase you like, but don't lose it.
|
|
Two keys (files) will be created in `~/.ssh/`:
|
|
|
|
1. `~/.ssh/<name>.pub` is the public key
|
|
2. `~/.ssh/<name>` is the private key
|