微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

nginx 日志分割压缩

利用 logrotate 自动处理日志

本logrotate 为linux自带

配置文件在 /etc/logrotate.conf 

包含里面的子配置

vim /etc/logrotate.d/Nginx

需要改log的目录

/usr/Nginx/logs/*log {

create 0664 Nginx root
daily
compress
rotate 30     # 轮询30天
missingok
notifempty
dateext
sharedscripts
postrotate
        if [ -f /run/Nginx.pid ]; then
                kill -USR1 `cat /run/Nginx.pid`
        fi
endscript




}

本脚本的执行文件(此文件为linux自带,一般不需要修改)

/etc/cron.daily/logrotate 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐