fail2ban 和 dovecot不能啟動的解法

Ubuntu 16.04有時fail2ban 和 dovecot不能啟動 可以這樣改

fail2ban

“/etc/systemd/system/multi-user.target.wants/fail2ban.service”

Code:
from
PIDFile=/var/run/fail2ban/fail2ban.pid
to
PIDFile=/run/fail2ban/fail2ban.pid

 

如果一直fail 可以直接打下面

/usr/bin/fail2ban-client -x start

start 可以改成stop status

 

Dovecot

nano /etc/systemd/system/multi-user.target.wants/dovecot.service

Code:
from
PIDFile=/var/run/dovecot/master.pid
to
PIDFile=/run/dovecot/master.pid

另外也可以用

systemctl edit dovecot 加上這行

PIDFile=/run/dovecot/master.pid

 

 

從這篇討論看到的

Leave a Reply