xinetd.d配置格式

先安装

sudo apt-get install xinetd

然后进入配置目录

ca /etc/xinetd.d

然后在该目录下添加相应服务

sudo touch ftp

sudo vim ftp

输入

service ftp
{
         socket_type = stream
                      wait = no
      user = root
      server = /usr/sbin/vsftpd
      log_on_success += DURATION
      disable = no
}

修改保存后,重启ftp服务

service vsftpd restart

 

 

附类型对应解释

xinetd.d配置格式

 

上一篇:网络服务-VSFTP


下一篇:Linux系统下安装FTP服务