gpt4 book ai didi

linux - 如何每天轮换日志,仅包含当天的数据?

转载 作者:太空宇宙 更新时间:2023-11-04 12:04:12 24 4
gpt4 key购买 nike

我使用 logrotate 轮换我的 nginx 访问日志文件并具有以下配置:

/var/www/logs/*.log {
daily
missingok
dateext
dateformat _%Y-%m-%d
dateyesterday
rotate 90
compress
delaycompress
compressext
notifempty
create 0640 www-data www-data
sharedscripts
postrotate
[ -f /var/run/nginx.pid ] && kill -USR1 `cat /var/run/nginx.pid`
endscript

例如,当 cron 在凌晨 5 点运行该脚本时,文件中从凌晨 0 点到凌晨 5 点之间的所有日志都将轮换。我想要一个从午夜到晚上 11.59 整整一天的日志文件

有机会配置这个吗?

最佳答案

要在晚上 11 点 59 分轮换日志,请按如下方式配置/etc/crontab 文件:

59 23 * * * <path_to_logrotate_command> -f <path_to_logrotate_schedule_file> 
E.g. 59 23 * * * /usr/sbin/logrotate -f /home/foo/logrotate/rotate_nginx

关于linux - 如何每天轮换日志,仅包含当天的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51261915/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com