安装xinetd
[root@localhost ~]#yum -y install xineted
xinetd服务的启动
[root@localhost ~]#vi /etc/xinetd.d/rsync
servic rsync #服务的名称为telnet
{
flags = REUSE #标志为REUSE,设定TCP/IP socket可重用
socket_type = stream #使用TCP协议数据包
wait = no #允许多个连接同时连接
user = root #启动服务的用户为root
server = /usr/bin/rsync #服务的启动程序
log_on_failure +=USERid #登陆失败后,记录用户的ID
disable = no #服务启动
}
重启xinetd服务
[root@localhost ~]#service xinetd restart
xinetd服务的自启动
— [root@localhost ~]#chkconfig telnet on
— ntsysv