diff --git a/Linux/AliYun/阿里云远程连接.md b/Linux/AliYun/阿里云远程连接.md index 8d3e268..58ff2d2 100755 --- a/Linux/AliYun/阿里云远程连接.md +++ b/Linux/AliYun/阿里云远程连接.md @@ -1,14 +1,53 @@ -远程连接密码: 148880 +# 阿里云服务器远程连接 -120.78.214.77(公) - > +## 服务器信息 -Mysql root 1q2w3e4r -phpmyadmin 1q2w3e4r +| 项目 | 信息 | +|------|------| +| 公网 IP | `120.78.214.77` | +| 连接方式 | SSH | -Wordpress admin chill wuzhuoshan@163.com 1q2w3e4r +--- -[ftp://cocomap.cn](ftp://cocomap.cn) chill 1q2w3e4r +## SSH 连接 -网站统计——百度 ,双十二事变 -[https://tongji.baidu.com/web/11004934/overview/index](https://tongji.baidu.com/web/11004934/overview/index) \ No newline at end of file +```bash +# 基本连接 +ssh root@120.78.214.77 + +# 指定端口 +ssh -p 22 root@120.78.214.77 + +# 使用密钥 +ssh -i ~/.ssh/key.pem root@120.78.214.77 +``` + +--- + +## 远程管理工具 + +- **Windows**:使用 Xshell、PuTTY、MobaXterm +- **macOS/Linux**:直接使用终端 + +--- + +## 安全建议 + +1. 使用密钥登录,禁用密码登录 +2. 修改默认 SSH 端口(22 → 其他) +3. 配置防火墙,只开放必要端口 +4. 定期更新系统补丁 + +--- + +## 阿里云安全组配置 + +在阿里云控制台 → 安全组,需开放以下端口: + +| 端口 | 服务 | +|------|------| +| 22 | SSH | +| 80 | HTTP | +| 443 | HTTPS | +| 3306 | MySQL(建议限制 IP) | +| 3389 | RDP(Windows 远程桌面) |