今天在使用xshell连接阿里云的时候发现
怎么连也上不去 经过一番排查后发现是sshd坏掉了
修复方法
方法1:接着做如下操作
(local@localhost ~)# chmod 600 /etc/ssh/ssh_host_rsa_key
(local@localhost ~)# chmod 600 /etc/ssh/ssh_host_ecdsa_key
(local@localhost ~)# service sshd star
方法2:或者尝试操作如下
chown -R root.root /var/empty/sshd
chmod 744 /var/empty/sshd
service sshd restart