언젠가부터 ubuntu에서 사용하고 있는 proftpd가 주기적으로 죽어있는 것이 발견되었는데...

찾아보니 logrotate에 의해 log file이 정리되면서 문제가 발생하는 것으로 확인되었고,

아래와 같이 수정하면 해당 문제를 회피할 수 있다.


/etc/init.d/proftpd 파일에서 force-reload|restart) 항목을 찾아서 다음과 같이 수정


177     force-reload|restart)

178     if [ "x$RUN" = "xyes" ] ; then

179         signal stop 1

180         sleep 10

181         start

182     else


https://bugs.launchpad.net/ubuntu/+source/proftpd-dfsg/+bug/1293416


사용자 로그인