解决lightsail登录提示Please login as the user “centos” rather than the user “root

接上一篇文章:lightsail快捷为CentOS镜像开启root登陆,我们使用脚本安装后,从本地登录是正常的,但是一部分机器之间ssh的话,就会提示:“Please login as the user “centos” rather than the user “root”.” Then the connection will close.

解决办法:

如果是使用上面的脚本后无法登录的,可使用:

>/root/.ssh/authorized_keys
service sshd restart

如果是全新安装的系统,无法使用root登录的,可以使用以下脚本:

>/root/.ssh/authorized_keys
sed -i 's/#PermitRootLogin yes/PermitRootLogin yes/g'  /etc/ssh/sshd_config
service sshd restart

即可解决无法使用root登录的问题。

» 本文链接:解决lightsail登录提示Please login as the user “centos” rather than the user “root
» 转载请注明来源:刺客博客
» 如果文章失效或者安装失败,请留言进行反馈。