Skip to main content
Once your instance is Deployed, you can connect via SSH, set up VS Code Remote, and forward ports for services like Jupyter.

SSH Connection

The SSH command is available on your instance’s detail page. The general format is:
For example:
Some instances use a non-standard SSH port. Always check the port shown in your instance details.

First Connection

On your first connection, you will be asked to confirm the server fingerprint:
Type yes to continue. This is normal for new instances.

Verify GPU Access

After connecting, confirm that your GPU is available:

Port Forwarding

To access services running on your instance from your local browser, use SSH port forwarding:

Common Ports

Example — forward Jupyter to your local machine:
Then open http://localhost:8888 in your browser.

VS Code Remote SSH

VS Code can connect directly to your instance for a full IDE experience.

Setup Steps

  1. Install the Remote - SSH extension in VS Code.
  2. Open the Command Palette (Cmd+Shift+P / Ctrl+Shift+P).
  3. Select Remote-SSH: Connect to Host….
  4. Enter the connection string: root@<instance-ip> -p <port>.
  5. When prompted, select the SSH key to use.
  6. VS Code will install its server component on the instance and connect.

SSH Config (Optional)

For quicker access, add your instance to ~/.ssh/config:
Then connect with: ssh runcrate-instance or select runcrate-instance from VS Code.

File Transfer

Use scp to copy files to and from your instance:

Troubleshooting

  • Verify the instance status is Deployed on the dashboard.
  • Confirm you are using the correct IP address and port from the instance details.
  • The instance may still be starting up — wait a minute and try again.
  • Ensure your SSH key is added to your Runcrate account and was selected during deployment.
  • Verify you are using the correct key file: ssh -i ~/.ssh/correct_key ...
  • Check file permissions: chmod 600 ~/.ssh/your_key
  • Check your local network and firewall settings.
  • Verify the instance IP and port on the dashboard.
  • If the instance was recently deployed, wait 1-2 minutes for networking to initialize.