码迷,mamicode.com
首页 > 系统相关 > 详细

linux查看与开启ssh

时间:2014-09-22 17:20:02      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:http   使用   ar   sp   art   问题   on   c   html   

首先通过物理终端进入到linux上,手工检查ssh发现没运行
/etc/init.d/sshd status
sshd is stopped
手工启动服务,发现报告权限错误。
/etc/init.d/sshd start 
Starting sshd:/var/empty/sshd must be owned by root and not group or world-writable.
[FAILED]
使用rpm -V 命令可检查到ssh的软件包正常,但某个目录的属主错误。
rpm -V openssh-server
S.5..... c /etc/ssh/sshd_config
.....U.. /var/empty/sshd
经查看发现这个目录的属主不是root,所以启动ssh报错
ls -ld /var/empty/sshd/
d--x--x--x 2 vu00106 root 1024 Feb 2 2005 /var/empty/sshd/
修改为root属主,启动成功
chown root /var/empty/sshd/
/etc/init.d/sshd start
Starting sshd: [ OK ]
至此问题修复。
另外,还可以尝试:
这个是权限的问题
可采取以下两步解决
chown   -R   root.root /var/empty/sshd
chmod 744 /var/empty/sshd
service sshd restart
就可以解决上述的问

 

 

http://bbs.chinaunix.net/thread-4147109-1-1.html

linux查看与开启ssh

标签:http   使用   ar   sp   art   问题   on   c   html   

原文地址:http://www.cnblogs.com/laj12347/p/3986177.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!