/ Linux / 373浏览

Ubuntu设置ssh root登陆

1、首先设置一下root密码

sudo passwd root

2、编辑sshd_config文件

sudo vim /etc/ssh/sshd_config

找到# Authentication项下的 PermitRootLogin prohibit-password改成PermitRootLogin yes

3、重启ssh

sudo systemctl restart sshd