liunx cronb设置及日志清理

来源:互联网 发布:淘宝新店前期怎么经营 编辑:程序博客网 时间:2024/05/17 23:55

找个目录放清理日志脚本

# 删除超过 N 天的日志
find /mnt/logs/youoor/ -type f -name "*.log" -mtime +5 | xargs rm -f


crontab文件添加

0 3 * * * root /root/admin/clear_youoor_log.sh >> /dev/null 2>&1


service crond restart重启

0 0
原创粉丝点击