使用shell指令碼對Nginx日誌進行切分

testgdgdg發表於2018-08-02

1.日誌格式

預設的日誌格式: main

log_format  main  `$remote_addr - $remote_user [$time_local] "$request" `
                   $status $body_bytes_sent "$http_referer" `
                 `"$http_user_agent" "$http_x_forwarded_for"`;

如預設的main日誌格式,記錄這麼幾項

遠端IP- 遠端使用者/使用者時間 請求方法(如GET/POST) 請求體body長度 referer來源資訊

http-user-agent使用者代理/蜘蛛 ,被轉發的請求的原始IP

http_x_forwarded_for:在經過代理時,代理把你的本來IP加在此頭資訊中,傳輸你的原始IP

2.實現思路

shell+定時任務+nginx訊號管理,完成日誌按日期儲存

#!/bin/bash
base_path=`/usr/local/nginx/logs`
log_path=$(date -d yesterday +"%Y%m")
day=$(date -d yesterday +"%d")
mkdir -p $base_path/$log_path
mv $base_path/access.log $base_path/$log_path/access_$day.log
kill -USR1 `cat /usr/local/nginx/logs/nginx.pid`

3.定時任務

Crontab 編輯定時任務

01 00 * * * /xxx/path/b.sh  每天0時1分(建議在02-04點之間,系統負載小)


相關文章