码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 日志按照日期分割

时间:2020-07-22 16:12:11      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:服务器   管理   如何   etc   usr   err   The   nta   kill   

nginx 日志文件分割

nginx web 服务器中 access 日志,默认是不能按时间分隔的,每次日志都是打在access.log上,这样久而久之这个日志文件就特别的大,也不利于清理和管理,故此我们肯定是需要做时间上的切割的,那么如何做到完美的切割的呢?

我们采取的方案是利用shell脚本和crontab定时任务来做:每天 23:59:59 将日志取出来并新建文件,比如:error-2020-07-20.log。

创建shell脚本 cut_nginx_log.sh

#!/bin/bash
year=`date +%Y`
month=`date +%m`
day=`date +%d`
logs_backup_path="/usr/local/Cellar/nginx/1.15.8/logs"  

logs_path="/usr/local/Cellar/nginx/1.15.8/logs/" 
logs_access="access" 
logs_error="error"
pid_path="/usr/local/etc/nginx/logs/nginx.pid"

[ -d $logs_backup_path ]||mkdir -p $logs_backup_path
rq=`date +%Y_%m_%d`

if [ -f "/usr/local/Cellar/nginx/1.15.8/logs/access.log" ];then
mv ${logs_path}${logs_error}.log ${logs_backup_path}/${logs_error}_${rq}.log
fi

if [ -f "/usr/local/Cellar/nginx/1.15.8/logs/error.log" ];then
mv ${logs_path}${logs_access}.log ${logs_backup_path}/${logs_access}_${rq}.log
fi

# 刷新 nginx 日志文件
kill -USR1 $(cat /usr/local/etc/nginx/logs/nginx.pid)

创建定时任务:

# 每天 23:59:分开始执行
crontab –e 59 23 * * * bash cut_nginx_log.sh

nginx 日志按照日期分割

标签:服务器   管理   如何   etc   usr   err   The   nta   kill   

原文地址:https://www.cnblogs.com/GManba/p/13360684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!