日誌切分

隨着項目運行,日誌文件也變得愈來愈大,不方便定位問題。因而寫了將日誌文件切分的腳本,讓服務器定時運行。服務器

#!/bin/sh

# split the nohup file into pieces
# rules: 1. size: 20M per file 
#        2. split at 00:00 am 
#        3. named log_${currentday-1}_00xx
# Lawrence

this_path=$(cd `dirname $0`; pwd)

cd $this_path
current_date=`date -d "-1 day" "+%Y%m%d"`
split -b 20971000 -d -a 4 ./nohup.out ./nohupDir/log_${current_date}_

cat /dev/null > nohup.out

定時運行:this

$ crontab -e

這將使用vi命令去修改crontab文件,增長日誌

0 0 * * * sh /path/execute.sh
相關文章
相關標籤/搜索