xinetd服务为什么不能启动

xinetd服务为何不能启动
本帖最后由 danshiming 于 2014-09-11 18:24:40 编辑
问题的提出:
      今天安装了xinetd,安装步骤如下:
    1.执行 wget -c  URL
        其中URL为xinetd-2.3.14.tar.gz在服务器上的地址
      执行上述命令后,成功下载xinetd-2.3.14.tar.gz到/etc/xinetd.d目录
   2 执行tar xzvf  xinetd-2.3.14.tar.gz 
       解压,
   3 cd 到解压出来的xinetd-2.3.14目录
      依次执行 
      ./configure
       make
       make install
   4  经过第3步骤后,
       xinetd被放到/usr/local/sbin
      目录下了
5  执行 cp /etc/xinetd.d/xinetd-2.3.14/contrib/xinetd    /etc/rc.d/init.d
     即将xinetd的启动脚本从/etc/xinetd.d/xinetd-2.3.14/contrib目录复制一份到/etc/rc.d/init.d目录,以便等下执行service xinetd start使用
6  执行 cp /etc/xinetd.d/xinetd-2.3.14/contrib/xinetd.conf    /etc
    即将xinetd的配置文件从/etc/xinetd.d/xinetd-2.3.14/contrib目录复制一份到/etc目录,适当修改配置文件后如下:
xinetd服务为什么不能启动
xinetd服务为什么不能启动
xinetd服务为什么不能启动
因为配置文件很长,省略了很多截图,只截取了上述三幅图
7 执行service xinetd start,没有任何错误或正确提示,如下图所示:
xinetd服务为什么不能启动
8 执行ps,未发现xinetd进程
执行chkconfig --level 123456 xinetd on后再执行service xinetd start,还是没有任何错误或正确提示,ps时依然未见xinetd进程启动

各位大侠这是啥原因啊?
------解决思路----------------------
what does 
#/etc/init.d/xinetd status 
say?
------解决思路----------------------
Is there a disable option in /etc/xinetd.conf?

Make sure it's value is no
------解决思路----------------------
引用:
Quote: 引用:

Is there a disable option in /etc/xinetd.conf?

Make sure it's value is no


it's value is no, I am so sure


any reason u can't use the package offered by the system? why did u have to compile?