1.使用cron建立循环执行的例行性命令
/etc/crontab
- 30 4 * * * root run-parts /etc/cron.daily
每天04:30,将执行一次/etc/cron.daily目录下的所有可执行文件。
2.logrorate,全局配置文件为/etc/logrotate.conf
- #!/bin/sh
-
-
/usr/sbin/logrotate /etc/logrotate.conf
-
EXITVALUE=$?
-
if [ $EXITVALUE != 0 ]; then
-
/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
-
fi
-
exit 0
3.wtmp的配置,/etc/logrotate.d/wtmp
阅读(631) | 评论(0) | 转发(0) |