ubuntu设置允许root用户远程登录
1.修改root密码
su passwd root
2.配置ssh允许root远程登录
sudo vi /etc/ssh/sshd_config
取消注释PermitRootLogin并修改值prohibit-password为yes
PermitRootLogin yes
3.重启ssh服务
service ssh restart
service sshd restart
su passwd root
sudo vi /etc/ssh/sshd_config
取消注释PermitRootLogin并修改值prohibit-password为yes
PermitRootLogin yes
service ssh restart
service sshd restart
评论 (0)