Skip to content

Connect to the cluster

Connect with the command line

Use your private key to authenticate when connecting to a running instance via SSH. The instance has an SSH key associated with it, provided when that instance was created. The private key must correspond to that SSH key.

ssh -i <path_to_your_private_key> <username>@<ip_address>

Examples:

ssh -i ~/.ssh/id_ed25519 john_smith@compute.safe.ai
ssh -i ~/.ssh/id_rsa john_smith@compute.safe.ai