首页 > 其他 > 详细

nginx日志分割脚本

时间:2015-12-17 10:59:22      阅读:237      评论:0      收藏:0      [点我收藏+]

#cut_nginx_logs.sh

#!/bin/bash

#function:cut nginx log files


#set the path to nginx log files

log_files_path="/usr/local/nginx/logs/"

log_files_dir=${log_files_path}$(date +%Y%m%d)

#set nginx log files you want to cut

log_files_name=(access error)

#set the path to nginx.

nginx_sbin="/usr/local/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]}.log

done


#delete 30 days ago nginx log files

find $log_files_path -mtime +$save_days -exec rm -rf {} \;


$nginx_sbin -s reload


本文出自 “少犟” 博客,请务必保留此出处http://xushaojie.blog.51cto.com/6205370/1725468

nginx日志分割脚本

原文:http://xushaojie.blog.51cto.com/6205370/1725468

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!