Skip to main content
Manually SSHing is an advanced escape hatch. Thunder Compute already handles SSH, port forwarding, and key rotation through the CLI, VS Code extension, and console. Stick to the standard connect flows unless you have existing infrastructure that relies on raw SSH.

Save an SSH key

Open Authentication → SSH Keys (Advanced) in the console to add or remove organization keys. Saved keys live at the org level, so everyone on your team can reuse them when creating instances.

Attach a key when creating an instance

When launching an instance from the console, choose a saved key during creation. Instances include the selected public key in authorized_keys at boot. You can add keys later via the Add SSH key to instance API endpoint.

SSH manually

  1. Find the instance IP and SSH port from the instance details pane—click the instance row in the console to expand it.
  2. From your local machine, run SSH with the private key that matches the saved public key, the reported port, and the ubuntu user:
    ssh -i ~/.ssh/id_ed25519 -p <port> ubuntu@<instance-ip>
    
    Replace ~/.ssh/id_ed25519 with your private key path. Substitute <port> with the value from instance details. Most images use the ubuntu user; check your template if it differs.
  3. Optional: copy the command into JetBrains Gateway or any remote-SSH client.

Quick troubleshooting

  • Permission denied: make sure you are connecting as ubuntu, using the -p <port> from instance details, and that the matching private key exists locally.
  • Connection timed out: re-check that you copied the correct port; the IP stays stable, but the exposed port can change if the instance is cycled.
  • Host verification failed: remove the old entry from ~/.ssh/known_hosts and retry. New IPs will change fingerprints.
  • Still stuck? Double-check the IP, port, and key, or send a message in Discord with the SSH output.