php日志切割

#!/bin/bash
#
# PHP日志切割
# from: https://www.mmfei.com/?p=378
 
logs_path="/data1/logs/apps/php"
# 每分钟切割
tm=$(date +'%Y-%m-%d-%H-%M' -d '10 minutes ago')
 
cd $logs_path || exit 1
 
cut_log()
{
    logfile=$1
    targetfile=$2
 
    [ -f "$targetfile" ] && return 1
    [ -f "$logfile" ] || return 1
    [ $(stat -c %s $logfile) -eq 0 ] && return 1
 
    mv $logfile $targetfile
    chown www:www $targetfile
 
    return 0
}
 
cut_log www-access_log www-access_${tm}.log
cut_log php-fpm_slow.log php-fpm_slow_${tm}.log
 
/etc/init.d/php-fpm reloadlog
 
 
#删除7天前的日志
find . -maxdepth 1 -mtime +7 -type f -exec rm {} \;
 
exit 0

来源:https://www.mmfei.com/?p=378

转载于:https://my.oschina.net/mmfei/blog/874169

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值