aws ec2服务器

切换root用户登录

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 密钥证书放到了~/.ssh目录
cd ~/.ssh

# 把证书权限修改为400
chmod 400 aws-tokyo.pem

# ssh远程连接
ssh -i aws-tokyo.pem ec2-user@ec2-3-113-37-231.ap-northeast-1.compute.amazonaws.com

# root用户设置密码
sudo passwd root

# 切换到root用户
su root

# 修改 PasswordAuthentication 为 yes
vim /etc/ssh/sshd_config

# 重启服务器
您的支持将鼓励我继续创作!