Skip to content

Connecting to your cloud vps using SSH with macOS (Apple)

This article covers connecting to your cloud vps with SSH using macOS. For other operating systems, see the Windows or Linux guides.

All cloud vps plans include full root access via SSH over port 22 by default.

  1. After completing your cloud vps setup, you will receive an email titled “Your Compute is Ready!” containing your compute IP and root password.

  2. SSH is built into macOS. Open the Terminal app by navigating to Applications > Utilities > Terminal, or by searching for “Terminal” in Finder or Spotlight.

  1. In the Terminal window, type the following command (replacing 1.2.3.4 with your actual compute IP):

    ssh root@1.2.3.4
  2. When making your first-ever SSH connection to a new compute, you will be prompted to accept the compute’s SSH fingerprint. This is normal and safe — type yes to continue.

  3. When prompted, enter your compute root password and press Enter to complete the connection.

  4. Your Terminal prompt will change to the hostname of your cloud vps, indicating a successful connection.

For additional Terminal documentation, visit the official Apple Terminal guide.