Linux 中/var/spool/postfix/maildrop目录下堆积大量小文件

1,原理分析:
经过调查,是因为linux在执行cron时,会将cron执行脚本中的output和warning信息,都会以邮件的形式发送Cron全部者, 而因为客户环境中的sendmail和postfix没有正常运行,致使邮件发送不成功,所有小文件堆积在了maildrop目录下面,并且没有自动清理转换的机制,因此长达一年的时间,此目录已堆积了大量的文件。查看man cron的信息,能够知道会发送给cron owner.

[root@mw1 postfix]# man cron linux

DESCRIPTION post

Cron searches /var/spool/cron for crontab files which are named after accounts in crontabs found are loaded into memory. Cron also searches for /etc/crontab and the spa

files in the directory, which are in a different format (see crontab(5) ). Cron then wakes up every minute, examining all stored crontabs, checking each command to see orm

if it should be run in the current minute. When executing commands, any output is mailed to the owner of the crontab (or to the user named in the MAILTO environment crontab

variable in the crontab, if such exists). it


(注意:若是sendmail或者postfix正常运行,则会在/var/mail目录下产生大量的邮件,也会堆积) form


2, 解决方案: 原理

在cron的第一行加入 MAILTO=""即可,这样执行当前用户的Cron时,不会发送邮件。 file

Please add the MAILTO="" in the head of cron , please see the blow sample. command

[root@mw1 postfix]# crontab -e

MAILTO=""

*/5 * * * * /opt/OCMonitor/bin//ocSysMonitor -top -sar –netfmt

相关文章
相关标签/搜索