1、xinetd为linux下的rhel6超级守护进程,rhel5超级守护进程为inetd

安装超级守护进程
[root@rootbug~]#yum install xinetd
超级守护进程的作用只要是将普通服务进程如:rsync、ftp、tftp等服务进程托管到超级守护进程中进行安全管理
2、查看超级守护进程开启情况
[root@rootbug ~]# chkconfig --list |grep xinetd
xinetd

0:off 1:off 2:off 3:on 4:on 5:on 6:off
从中可以查看到xinetd是否为开机启动,如果有其他进程托管到超级守护进程下,此命令也可以列出它们的启动情况。
如果没有可以设置开机启动
[root@rootbug ~]#chkconfig --level 2345 xinetd on
3、配置一般服务托管到超级守护进行下
(1)以rsync服务为例
[root@rootbug ~]#vim/etc/xinetd.d/rsync -------如果xinetd目录下没有rsync,则通过vim新创建
service rsync --服务名
{
disable = yes --disable等于yes表示此服务关闭
socket_type =stream --tcp的连线机制
wait =no --不等待,可以同时进行大量连线功能
user =root --用root身份启动服务
server = /usr/bin/rsync --定义你的rsync的服务执行文件的位置
server_args =--daemon