linux系统如何定时清理日志,linux系统中定时清理日志实现方法

需求

项目中使用maxwell监听mysql的binlong后,将消息日志打印到log文件.需要类似log4j的形式,记录最近n天的日志

脚本

#!/bin/bashtarget_dir='/home/apprun/maxwell/script'prefix_log='maxwell-'prefix_sh='start-maxwell_'postfix='.out'ipArr=('172.16.32.227' '172.20.3.64' '172.20.3.65' '172.20.3.71');keep_days=2start_days=$(($keep_days - 1))today=`date +%Y_%m_%d`yesterday=`date -d yesterday +%Y_%m_%d`delday=`date -d -2day +%Y_%m_%d`dateArr[0]=`date +%Y_%m_%d`hitory_days_count=$[$keep_days+1]for ((i=1;i<=$history_days_count;i++))dodateArr[$i]=`date -d -$i'day' +%Y_%m_%d`echo ${dateArr[$i]}donefor i in ${ipArr[*]};doecho $iPID=`ps -ef | grep maxwell | grep '$i' | awk '{print $2}'`echo 'pid='$PID#杀死进程echo '---------------'for id in $PIDdokill -9 $idecho 'killed $id'doneecho '---------------'#文件迁移file_name=$prefix_log$iecho $i;for n in $(seq $keep_days -1 1)dobefore=$[$n+1]if [ -f $target_dir/$file_name'_'${dateArr[$n]}$postfix ]; then mv $target_dir/$file_name'_'$n$postfix $target_dir/$file_name'_'${dateArr[$before]}$postfix; fidoneif [ -f $target_dir/$file_name$postfix ]; then mv $target_dir/$file_name$postfix $target_dir/$file_name'_'${dateArr[1]}$postfix; fitouch $target_dir/$file_name$postfix;#maxwell重启tmpsh=$target_dir'/'$prefix_sh$i'.sh'sh $tmpshecho 'maxwell '$i' sh done'do

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值