vote up 0 vote down star

I accidently delelte /var/log/maillog, after I recreate it, but postfix wouldn't write any mail log into it anymore, I restart postfix, no help, anyone know why?

flag

44% accept rate
did you check file permissions? – Masci Jun 10 at 8:48

2 Answers

vote up 3 vote down

maillog is usually managed by syslog, not postfix directly.

Restarting syslog should be enough, as to permissions just ensure they're similar to other files in /var/log and that should be enough.

On my debian system all logs are owned either root:adm or root:root, are usually mode 644 or 640 (u+rw, g+r, optional o+r)

And on debian/ubuntu to restart syslog: /etc/init.d/sysklogd restart

On RHEL/CentOS: service syslog restart

link|flag
You can also restore contents of your deleted file if you did not restart syslogd yet. Got to /proc/cat /var/run/syslogd.pid/fd/ and check which descriptor has contents of maillog, copy its contents and then restart syslog. – Tometzky Jun 11 at 11:21
vote up 0 vote down

You will need to check the permissions and the file ownership, such that the syslog process can write to it.

man chmod
man chown
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.