1. 给 root 用户设置密码
sudo passwd root
2. 修改 /etc/ssh/sshd_config 文件
a. 找到 #PermitRootLogin 一行 改成 PermitRootLogin yes ,也就是删掉前端的注释并做改后面的值为yes
b. 删掉#PasswordAuthentication yes 前面的
3. 重启 ssh 服务
sudo service ssh restart
标签:删掉,更改,sudo,PermitRootLogin,ssh,yes,root,Debian
From: https://blog.csdn.net/weixin_43869127/article/details/142924610