nginx日志分割

2018-07-20 05:47:17来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

vim /root/runscript/cut_nginx_log.sh

#!/bin/bash
# nginx日志切割脚本
# This script run at 00:00
logs_path="/usr/local/nginx/logs/"
target_path="/usr/local/nginx/logs/cut_log/"
mv ${logs_path}beauty.access.log ${target_path}beauty.access.$(date -d "yesterday" +"%Y%m%d").log
kill -USR1 `cat /usr/local/nginx/logs/nginx.pid`

 

crontab -e

#重启cron

service crond restart

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:监控报I/O问题,怎么办?

下一篇:nginx常用模块