一、查找问题的起因

#检查包是否正常
rpm -V openssh-server

#检查sshd配置是否正确
sudo sshd -T 

 

二、根据显示问题找到解决办法

Starting sshd:/var/empty/sshd must be owned by root and not group or world-writable. [FAILED]

解决:

chown -R root.root /var/empty/sshd 
chmod 744 /var/empty/sshd 

 

相关文章:

  • 2021-10-24
  • 2022-12-23
  • 2021-10-02
  • 2022-12-23
  • 2021-07-01
  • 2022-12-23
  • 2022-01-18
  • 2022-01-07
猜你喜欢
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2022-01-19
  • 2022-12-23
相关资源
相似解决方案