定时清理7天前的Tomcat日志shell脚本

#!/bin/bash
logs_path="/home/tomcat-7.0/logs"

#定时清理7天前的Tomcat日志脚本
find $logs_path -mtime +7 -name "localhost_access_log.*.txt" -exec rm -rf {} \;
find $logs_path -mtime +7 -name "catalina.*.log" -exec rm -rf {} \;
find $logs_path -mtime +7 -name "manager.*.log" -exec rm -rf {} \;
find $logs_path -mtime +7 -name "host-manager.*.log" -exec rm -rf {} \;
find $logs_path -mtime +7 -name "catalina.out.*" -exec rm -rf {} \;
>$logs_path/catalina.out;

其中,logs_path要根据自身log路径配置。

二、为clean.sh文件添加权限

chmod 777 /usr/local/src/cleartomcat.sh

三,开启定时执行cleartomcat..sh脚本进行清理任务

crontab -e进入定时任务的编辑界面中

0  4  *  *  *  /bin/sh   /usr/local/src/cleartomcat.sh

你可能感兴趣的:(shell)