Nginx 访问日志轮询切割脚本


Nginx 访问日志轮询切割脚本


#!/bin/sh
Dateformat=`date +%Y%m%d`
Nginxlogdir="/var/log/nginx"
/bin/mv ${Nginxlogdir}/access.log ${Nginxlogdir}/${Dateformat}_access.log

/usr/sbin/nginx -s reload


配置nginx.conf

access_log  /var/log/nginx/access.log  main;


测试

ll -h /var/log/nginx/
总用量 18M
-rw-r--r-- 1 root root 21K 3月  25 20:25 20170325_access.log
-rw-r--r-- 1 root root 275 3月  25 20:25 access.log
-rw-r--r-- 1 root root 18M 3月  25 20:25 error.log


配置定时任务使得每天0点整执行脚本

crontab -l
0  0  *  *  *   /usr/sbin/ntpdate pool.ntp.org
00 00 * * *  /bin/sh /root/nginxlog.sh >/dev/null 2>&1

你可能感兴趣的:(Nginx)