centos下VSFTPD启动失败的解决
新买了一个服务器,所有配置文件和原有的都一样,但是VSFTPD在服务器重启以后的一段时间后就不好用,提示Starting vsftpd for vsftpd: [ FAILED ]
重装也不好用很是奇怪。
偶然从网上搜索到/etc/logrotate.d/vsftpd.log的文件配置,和我自己的对比一下,我的多了missingok一项,把它注释掉启动,搞定!
目前的/etc/logrotate.d/vsftpd.log文件如下:
/var/log/vsftpd.log {
# ftpd doesn’t handle SIGHUP properly
nocompress
# missingok
}
/var/log/xferlog {
# ftpd doesn’t handle SIGHUP properly
nocompress
# missingok
}
October 30th, 2009 in
程序人生