Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Log in to the dashboard.

  2. Select the appropriate project from the drop down menu at the top left.

  3. On the Project tab, open the Compute tab.

  4. Click the Key Pairs tab, which shows the key pairs that are available for this project.

  5. Click Create Key Pair.

  6. In the Create Key Pair dialog box, enter a name for your key pair, and click Create Key Pair.

  7. The private key will be downloaded automatically.

  8. The newly generated private key must be inserted into in a text file, without extension, conventionally called id_rsa. The file is must be placed in the ".ssh" folder, which should be located in the path "Users \ nameUser \ .ssh" path.

Import a key pair

First This procedure is an alternative to the one presented in the previous paragraph: you can generate a Key Pair on OpenStack and save the Private Key locally or, conversely, generate it locally and save the public part on OpenStack. To do this, you need to generate on the local machine, which you will use to connect via ssh, the key pair, using the command:

Code Block
languagebash
titleKeygen
ssh-keygen -t rsa -f myKeyPair.key

...