重启 VPS 后无法 ssh

重启 VPS 后无法 ssh

我刚刚重启了我的 VPS,然后当我通过 ssh 登录时,输入密码后显示权限被拒绝。我有一个 OVH linux VPS,我可以使用面板上的 KVM 登录它。我没有设置任何 ssh 密钥,我想知道可能是什么原因。我的操作系统/发行版是 Debian 7 (Wheezy)(64 位版本)。

答案1

使用 KVM 登录服务器并检查下面列出的内容。

vim /etc/ssh/sshd_config

找到以下几行密码验证如果它的评论比取消注释或更改为是的

#PasswordAuthentication yes
#PermitEmptyPasswords no
PasswordAuthentication yes

现在检查 ssh 服务的状态是否已启动并正在运行,如果没有则

 service ssh status
 service ssh start
 chkconfig ssh on  ( using this service atomatically comes up on next reboot)

相关内容