启动root登录SSH功能

1.切换到root用户
#chmod +w /etc/ssh/sshd_config
2.将sshd_config文件下的PermitRootLogin no改成PermitRootLogin yes
#vi /etc/ssh/sshd_config
3.重启ssh服务
# service sshd restart
4.将ssh client的文件/etc/ssh/ssh_config 以及 ssh server的文件/etc/ssh/sshd_config 中的GSSAPIAuthentication yes 改成 GSSAPIAuthentication no。注意/etc/ssh/ssh_config/etc/ssh/sshd_config的分别。

你可能感兴趣的:(启动root登录SSH功能)