连接到服务器
当你购买一台服务器或者 VPS 的时候,你通常会在邮箱中收到如下信息:
- IP 地址
- 用户名 (通常是
root
, 但是在 Scaleway 你会在安装系统的时候设置一个新的名字) - 密码
Windows 用户
- 如果你没有安装 PuTTY, 你可以从这里下载. 下载完成后, 点击 .exe 根据想到安装.
- 启动 PuTTY 后,你需要输入服务器信息以建立连接,需要 IP,用户名,密码.
- 第一次登陆时你会看到一个警告,你需要确认这是你的服务器,并点击继续。
- 登陆后你通常会看到如下信息:
Welcome to Ubuntu 18.04.5 LTS (GNU/Linux 4.15.0-124-generic x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
System information as of Fri Jan 15 16:11:47 CET 2021
System load: 0.0 Processes: 167
Usage of /: 36.0% of 10GB Users logged in: 1
Memory usage: 12% IP address for eth0: 192.168.0.15
Swap usage: 0%
* Introducing self-healing high availability clusters in MicroK8s.
Simple, hardened, Kubernetes for production, from RaspberryPi to DC.
https://microk8s.io/high-availability
* Canonical Livepatch is available for installation.
- Reduce system reboots and improve kernel security. Activate at:
https://ubuntu.com/livepatch
49 packages can be updated.
15 updates are security updates.
root@server:~#
Linux/OS X 用户
你可以用如下步骤在 Linux 或者 OSX 登录:
打开一个终端
输入:
ssh <username>@<hostname>
比如说:
ssh [email protected]
你会收到一个 host key 的警告. 输入 "yes" 来确认.
输入你的密码
完成