其他分享
首页 > 其他分享> > xinetd.d配置格式

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

 

 

附类型对应解释

 

标签:ftp,sudo,service,no,配置,vsftpd,xinetd,格式
来源: https://www.cnblogs.com/yangjinhua/p/14588971.html