首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

secureCRT链接linux异常信息

2012-08-11 
secureCRT链接linux错误信息secureCRT链接linux错误信息:the remote system refused the connection?解决:

secureCRT链接linux错误信息

secureCRT链接linux错误信息:

the remote system refused the connection

?

解决:

????? 启动该服务:service sshd start

???? Starting sshd:/var/empty/sshd must be owned by root and not group or world-writable.
  [FAILED]
  使用rpm -V 命令可检查到ssh的软件包正常,但某个目录的属主错误。
  -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
  就可以解决上述的问题。

热点排行