Ubuntu 使用root登录ssh

# 安装
sudo apt install openssh-server
# 改root 密码
sudo passwd root
# 改 ssh 配置文件
sudo vim /etc/ssh/sshd_config

修改 /etc/ssh/sshd_config 文件

# PermitRootLogin prohibit-password
# 改成
PermitRootLogin yes   # 允许root登录
# PermitEmptyPasswords no
# 改成 
PermitEmptyPasswords no #不允许空密码登录
# PasswordAuthentication yes
# 改成
PasswordAuthentication yes # 设置是否使用口令验证。
# 重启 ssh
sudo systemctl restart sshd

你可能感兴趣的:(Ubuntu 使用root登录ssh)