Skip to content

Latest commit

 

History

History
85 lines (55 loc) · 1.55 KB

File metadata and controls

85 lines (55 loc) · 1.55 KB

Step 2: SSH Setup

Overview

Connect to your BytePlus ECS server using SSH. This is your key to the digital Batcave.

Requirements

  • Server IP (from Step 1)
  • Password (set during instance creation)
  • SSH client (built-in on Mac/Linux, use PowerShell/WSL on Windows)

Step-by-Step Instructions

1. Open Terminal (Mac/Linux)

Mac:

  • Press Cmd + Space
  • Type "Terminal"
  • Press Enter

Linux:

  • Press Ctrl + Alt + T
  • Or search for "Terminal" in applications

2. Connect via SSH

Command:

ssh root@YOUR_SERVER_IP

Example:

ssh root@172.31.0.2

3. Enter Password

When prompted:

root@172.31.0.2's password:

Enter the password you set during instance creation.

4. First Login

You'll see:

Welcome to Ubuntu 22.04 LTS (GNU/Linux 6.8.0-55-generic x86_64)
...
root@iv-yefj7ty6tcobqbm88iqs:~#

Congratulations! You're now inside your server.

Next Steps

Once connected, proceed to:

Step 3: Model Selection →

Troubleshooting

Problem Solution
"Connection refused" Check if server is running
"Permission denied" Verify username/password
"Host key verification" Delete ~/.ssh/known_hosts entry
SSH not installed Install: sudo apt install openssh-client

Notes

  • First login may take 30-60 seconds
  • Password won't show as you type (security feature)
  • If stuck, check server status in BytePlus console

Ready? Move on to Step3: Model Selection