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

nginx 日志切割脚本

时间:2017-05-12 13:24:04      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:one   follow   bsp   切割   脚本   script   for   time   rm -rf   

#!/bin/bash
#function:cut nginx log files for lnmp v0.5 and v0.6
#author: http://www.cnblogs.com/alex-note/

#set the path to nginx log files
log_files_path="/usr/local/webserver/nginx/logs/"
log_files_dir=${log_files_path}$(date -d "yesterday" +"%Y")/$(date -d "yesterday" +"%m")
#set nginx log files you want to cut
log_files_name=(access access licess)
#set the path to nginx.
nginx_sbin="/usr/local/webserver/nginx/sbin/nginx"
#Set how long you want to save
save_days=30

############################################
#Please do not modify the following script #
############################################
mkdir -p $log_files_dir

log_files_num=${#log_files_name[@]}

#cut nginx log files
for((i=0;i<$log_files_num;i++));do
mv ${log_files_path}${log_files_name[i]}.log ${log_files_dir}/${log_files_name[i]}_$(date -d "yesterday" +"%Y%m%d").log
done

#delete 30 days ago nginx log files
find $log_files_path -mtime +$save_days -exec rm -rf {} \;

$nginx_sbin -s reload

nginx 日志切割脚本

标签:one   follow   bsp   切割   脚本   script   for   time   rm -rf   

原文地址:http://www.cnblogs.com/alex-note/p/6844926.html

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