nginx日志切割
Posted Elvin笔记分享
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx日志切割相关的知识,希望对你有一定的参考价值。
nginx日志切割
#!/bin/sh #nginx日志切割 #设置 Log_path=/www/server/nginx/logs Yesterday=$(date -d "yesterday" +%Y-%m-%d_%S) Nginxbin=/www/server/nginx/sbin/nginx #日志改名 /bin/mv $Log_path/access.log $Log_path/access.$Yesterday.log /bin/mv $Log_path/error.log $Log_path/error.$Yesterday.log #重新生成日志 $Nginxbin -s reopen # #定时任务 # #nginx日志切割 # 00 00 * * * /root/sh/cut_log.sh # #
以上是关于nginx日志切割的主要内容,如果未能解决你的问题,请参考以下文章