可能原因和处理方法:
1,帐号或密码输入错误。检查输入的用户名或密码。Linux云服务器默认用户名root,如果密码错误,请在控制台重置密码。重置密码:选中待重置密码的云服务器,并选择“操作”列下的“更多 > 重置密码”。
2,SSH服务端配置了禁止root用户登录的策略。
a 编辑 /etc/ssh/sshd_config 文件,检查如下设置,确保root用户能通过SSH登录:
PermitRootLogin yes
b 重启 SSH 服务。
CentOS 6
service sshd restart
CentOS 7
systemctl restart sshd