599 B
599 B
本文作者:丁辉
Ubuntu允许Root用户登录
-
配置Root密码
sudo passwd root
-
修改 ssh 配置
sudo vi /etc/ssh/sshd_config
-
修改如下参数为 yes
# 允许 root 登录,但仅限于密钥方式。确保这是 'prohibit-password' 或 'without-password' PermitRootLogin yes # 确保公钥认证是开启的 PubkeyAuthentication yes # 密码认证是关闭的(增加安全性) # PasswordAuthentication no
-
重启 SSH 服务
sudo service ssh restart