linux启动ssh:Linux操作系统上SSH无法启动

 

 

在机器上直接登录问题显示如下:


/var/empty/sshd must be owned by root and not group or world-writable.


问题:


Linux上SSH无法启动

报告/var/empty/sshd must be owned by root and not group or world-writable.


解决办法:


首先通过物理终端进入到linux上手工检查ssh发现没运行

-bash-2.05b# /etc/init.d/sshd status

sshd is stopped


手工启动服务发现报告权限

-bash-2.05b# /etc/init.d/sshd start

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

[FAILED]

-bash-2.05b#


使用rpm -V 命令可检查到ssh软件Software包正常但某个目录属主

-bash-2.05b# rpm -V openssh-server

S.5..... c /etc/ssh/sshd_config

.....U.. /var/empty/sshd

-bash-2.05b#


经查看发现这个目录属主不是root所以启动ssh报错

-bash-2.05b# ls -ld /var/empty/sshd/

d--x--x--x 2 vu00106 root 1024 Feb 2 2005 /var/empty/sshd/

-bash-2.05b#


修改为root属主启动成功

-bash-2.05b# chown root /var/empty/sshd/

-bash-2.05b# /etc/init.d/sshd start

Starting sshd: [ OK ]

-bash-2.05b#


至此问题修复


另外还可以尝试:


这个是权限问题

可采取以下两步解决

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

chmod 744 /var/empty/sshd

service sshd restart

就可以解决上述问题


Tags:  linux开启ssh服务 linux开启ssh linuxssh linux启动ssh

延伸阅读

最新评论

发表评论