Connect With SSH
Manage your instance using a terminal and SSH for secure remote access.
Prerequisites
Section titled “Prerequisites”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).
Connecting
Section titled “Connecting”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_addressWith password:
ssh username@ip_addressExample:
ssh root@192.168.1.1