写下自己在启动 Proftpd的一些相关东西,希望能够和大家分享:
启动 ProFTPD
启动之前,先对超级服务器的ProFTPD的启动脚本做一些修改。
[root@sample certs]# vi /etc/xinetd.d/xproftpd ← 编辑ProFTPD启动脚本
log_on_success += DURATION USERID ← 找到此行,将“DURATION USERID”改为“HOST PID”
↓
log_on_success += HOST PID ← 变为此状态,防止登录时要等待30秒
log_on_failure += USERID ← 找到此行,将“USERID”改为“HOST”
↓
log_on_failure += HOST ← 变为此状态,防止登录时要等待30秒
disable = yes ← 找到此行,将yes改为no
↓
disable = no ← 变为此状态,让ProFTPD通过超级服务器启动
然后,通过重新启动超级服务器间接启动ProFTPD。
[root@sample certs]# chkconfig xproftpd on ← 设置ProFTPD自启动
[root@sample certs]# chkconfig --list xproftpd ← 查看ProFTPD自启动
xproftpd on ← 确认为on的状态就OK
[root@sample certs]# /etc/rc.d/init.d/xinetd restart ← 重新启动超级服务器
Stopping xinetd: [ OK ]
Starting xinetd: [ OK ]
通过文章的详细的说明,我相信大家都知道如何启动自己的ProFTPD,希望对你们有所帮助!
【编辑推荐】