Created
May 12, 2015 07:29
-
-
Save foru17/9b0bae4b2a3b4190a275 to your computer and use it in GitHub Desktop.
自动分割nginx日志
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#function:cut nginx log files for lnmp v0.5 and v0.6 | |
#author: http://lnmp.org | |
#set the path to nginx log files | |
log_files_path="/home/wwwlogs/" | |
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 vpser licess) | |
#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]}_$(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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment