Skip to main content

SSH Keys

Managing Your SSH Key in Morph Cloud

Accessing the SSH Keys Page

  1. Log in to your Morph Cloud account
  2. Navigate to the SSH Keys section in the left sidebar
  3. You'll see your current SSH key displayed at the top of the page (if one has been set)

Creating an SSH Key

Creating an SSH Key on macOS/Linux

  1. Open Terminal
  2. Run the following command (replace with your email):
    ssh-keygen -t ed25519 -C "your_email@example.com"
  3. When prompted to "Enter a file in which to save the key," press Enter to accept the default location
  4. Set a secure passphrase when prompted (recommended)
  5. Your new SSH key pair is now generated

To view your public key, run:

cat ~/.ssh/id_ed25519.pub

This will display your public key, which should begin with ssh-ed25519 followed by a string of characters and your email.

Setting Your SSH Key in Morph Cloud

  1. Copy your entire public key (including ssh-ed25519 at the beginning and your email at the end)
  2. Go to the SSH Keys page at https://cloud.morph.so/web/ssh
  3. Paste your public key into the "New SSH Key" text box
  4. Click the "Set SSH Key" button
  5. Your new key will replace any previously set key and appear in the "Current SSH Key" section

Important Notes

  • Morph Cloud only supports one SSH key per account/org at a time
  • Setting a new SSH key will replace your existing key
  • If you change your SSH key, you'll need to update any systems or workflows that use the previous key