# 启用root账户及密码自动验证
# 使用Google Cloud网页版ssh,切换到root
sudo -i
1
# 编辑ssh配置文件
vi /etc/ssh/sshd_config
1
# 修改以下的内容
# 允许root用户登录
PermitRootLogin yes
# 允许密码登录
PasswordAuthentication yes
# 允许使用基于键盘交互的认证方法
KbdInteractiveAuthentication yes
# 👺屏蔽 /etc/ssh/sshd_config.d/*.conf 文件
# google将部分配置权限修改在子文件夹.d内
#Include /etc/ssh/sshd_config.d/*.conf
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
# 重启ssh
service sshd restart
1
# 修改当前账户和root账户的密码
# 设置当前账户新密码
sudo passwd ${whoami}
1
# 设置root账户新密码
sudo passwd root
1