Skip to content
Live $300 credit for new accounts Valid for 60 days from account creation Get started →

Connect With SSH

Manage your instance using a terminal and SSH for secure remote access.

Before connecting, ensure you have:

  • IP Address: Available on the instance card or Instance Overview.
  • Default Username: Depending on OS (root, ubuntu, ec2-user).
  • Authentication Method: SSH Key (recommended) or Default Password (found in Instance Overview).

Open a terminal (Command Prompt/PowerShell on Windows, built-in terminal on macOS/Linux).

With SSH Key:

ssh -i /path/to/your/private/key username@ip_address

With password:

ssh username@ip_address

Example:

ssh root@192.168.1.1