亚马逊 Aws EC2 服务器配置 Root 访问
编辑
77
2025-01-03
1.创建完ec2实例,下载密钥对 使用密钥对登录 (ec2服务器初始用户名都是ec2-user)
ssh -i "ec2-user.pem" ec2-user@ec2-xx-xx-xx-xx.xx-1.compute.amazonaws.com
2.为 root 创建密码
sudo passwd root
3.切换到 root 身份
su root
4.用root去修改ssh文件
vi /etc/ssh/sshd_config
PermitRootLogin no 改为 PermitRootLogin yes
PasswordAuthentication no 改为 PasswordAuthentication yes
UsePAM yes 改为 UsePAM no
5.重启sshd服务
sudo /sbin/service sshd restart
6.为默认用户 ec2-user 添加登录密码
passwd ec2-user
原文链接:https://blog.csdn.net/qq_18980621/article/details/135755022
- 0
- 0
-
赞助
赞赏 -
分享