码迷,mamicode.com
首页 > Web开发 > 详细

配置apache的访问日志,并以一天时间来分割

时间:2016-04-29 01:48:48      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:local   命名   

[root@iZ25nzu9bj6Z abc]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf

技术分享

修改为以日期为命名的错误日志和访问日志

ErrorLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/tpp.com-error_%Y%m%d.log 86400"
   SetEnvIf Request_URI ".*\.gif$" image-request
   SetEnvIf Request_URI ".*\.jpg$" image-request
   SetEnvIf Request_URI ".*\.png$" image-request
   SetEnvIf Request_URI ".*\.bmp$" image-request
   SetEnvIf Request_URI ".*\.swf$" image-request
   SetEnvIf Request_URI ".*\.js$" image-request
   SetEnvIf Request_URI ".*\.css$" image-request
CustomLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/tpp.com-access_%Y%m%d.log 86400" combined env=!image-request

如下图:

技术分享

其中命令都是以绝对路径,rotatelogs是分割工具,%Y%m%d时间为分割单位,86400秒为一天。SetEnv为自定义的,下面访问日志可以调用env,即不记录以gif、jpg等结尾的文件。

接着我们从新检测和加载Apache

[root@iZ25nzu9bj6Z abc]#  /usr/local/apache2/bin/apachectl -t
Syntax OK
[root@iZ25nzu9bj6Z abc]#  /usr/local/apache2/bin/apachectl graceful

然后我们刷新下网页就会看到有日志生成,如下图:

[root@iZ25nzu9bj6Z abc]# cd /usr/local/apache2/logs/
[root@iZ25nzu9bj6Z logs]# ls
access_log  dummy-host.example.com-access_log  dummy-host.example.com-error_log  error_log  httpd.pid
[root@iZ25nzu9bj6Z logs]# ls
access_log  dummy-host.example.com-access_log  dummy-host.example.com-error_log  error_log  httpd.pid  tpp.com-access_20160429.log

注意:日积月累访问日志会越来越多,下面我们写个脚本进行删除一个月前的访问日志:

[root@iZ25nzu9bj6Z logs]# cat /usr/local/apache2/logs/logcron.sh

#! /bin/bash

# delete access logs

keepdays=31

log_files="/usr/local/apache2/logs/tpp.com-access"

rm -f ${log_files}_$(date +"%Y%m%d" --date="-${keepdays} day").log

加入到计划任务中,每天零点执行:

[root@iZ25nzu9bj6Z logs]# crontab -e

00 00 * * * /bin/bash/ /usr/local/apache2/logs/logcron.sh




本文出自 “Linux菜鸟” 博客,请务必保留此出处http://490617581.blog.51cto.com/11186315/1768858

配置apache的访问日志,并以一天时间来分割

标签:local   命名   

原文地址:http://490617581.blog.51cto.com/11186315/1768858

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