SSH 服务 异常报错“Failed to start OpenSSH Server daemon” 该怎么办???

Linux系统环境 centos 7

SSH无法正常启动,运行service sshd status 结果如下:

SSH 服务 异常报错“Failed to start OpenSSH Server daemon” 该怎么办???_第1张图片

提示:sshd服务加载失败......

这时应当接着输入sshd -t 检查如下:

SSH 服务 异常报错“Failed to start OpenSSH Server daemon” 该怎么办???_第2张图片

报错:提示服务无法加载ssh_host_rsa_key,ssh_host_ecdsa_key 推测估计是权限问题

方法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

SSH 服务 异常报错“Failed to start OpenSSH Server daemon” 该怎么办???_第3张图片

最后显示服务启动正常在运行就ok了。

你可能感兴趣的:(Linux系统)