nginx日誌切割

nginx_web發表於2012-07-24

 Nginx伺服器關於日誌切割這一項它沒有去解決,我不知道它們的開發人員是怎麼想的,但是我想這是沒必要的,我在本節一開始就說過,在生產環境下的訪問者日誌都是關閉的,即設定為“ access_log off ”。但是作為日誌管理的一部分,我們仍然要將其完善,在系統級完成這個功能,那麼也就是我們的shell指令碼了。

 

    這是一個LNMP套裝中的一個日誌切割指令碼:

 

#!/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

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

   

    根據實際的需要進行修改使用就可以了,我沒有使用過該指令碼。

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27043155/viewspace-736458/,如需轉載,請註明出處,否則將追究法律責任。

相關文章