红联Linux门户
Linux帮助

Nginx日志按天分割

发布时间:2016-08-11 08:35:45来源:linux网站作者:夜半弯
核心思想:使用crontab在每日23:59执行日志分割。
 
1、配置nginx日志信息,vim /etc/logrotate.d/nginx
/var/log/nginx/*.log {
nocompress
daily
copytruncate
create
notifempty
rotate 7
olddir /var/log/nginx
missingok
dateext
postrotate
/bin/kill -HUP `cat /var/run/nginx.pid 2> /dev/null` 2> /dev/null || true
endscript
}
 
2、配置crontab,vim /etc/crontab或者执行crontab -e添加如下信息:
59 23 * * * root ( /usr/sbin/logrotate -f /etc/logrotate.d/nginx)
 
3、重启cron
service cron restart

本文永久更新地址:http://www.linuxdiyf.com/linux/23204.html