码迷,mamicode.com
首页 > 其他好文 > 详细

nginx服务器的日志太多:定期执行脚本删除

时间:2015-04-11 23:46:51      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

#!/bin/bash
find /usr/local/nginx/logs/ -mtime +15 -type f -name *.log | xargs rm -f

脚本名字autodellog.sh

设置定时器(每天凌晨一点执行)

[root@localhost ~]# crontab -e
00 01 * * * /bin/bash /root/shell/autodellogs.sh
[root@localhost ~]# service crond restart

 

nginx服务器的日志太多:定期执行脚本删除

标签:

原文地址:http://www.cnblogs.com/jdhu/p/4418630.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!