VPS开启root远程登陆
1.切换到root角色 sudo -i
2.修改SSH配置文件/etc/ssh/sshd_config``vi /etc/ssh/sshd_config
修改PermitRootLogin
和 PasswordAuthentication
为yes
#Authentication:
PermitRootLogin yes
//默认为no,需要开启root用户访问改为yes(删除前面的#)
#Change to no to disable tunnelled clear text passwords:
PasswordAuthentication yes
//默认为no,改为yes开启密码登陆(删除前面的#)
3.给root用户设置密码 passwd root
4.重启SSH服务使修改生效 service sshd restart
5.登录 在xshell,直接使用root账号密码登录。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 爱折腾的菜鸟!
评论