Apache日志切割及不记录指定类型日志

1.自带rotatelogs日志切割

■ rotatelogs 日志轮询说明

___________________________________________________________

语法

rotatelogs [ -l ] logfile [ rotationtime [ offset ]] | [ filesizeM ]

选项

-l    使用本地时间代替GMT时间作为时间基准。注意:在一个改变GMT偏移量(比如夏令时)的环境中

使用-l会导致不可预料的结果。

logfile  它加上基准名就是日志文件名。如果logfile中包含"%",则它会被视为用于strftime()的格式字符串; 否则它会被自动加上以秒为单位的".nnnnnnnnnn"后缀。这两种格式都表示新的日志开始使用的时间。

rotationtime 日志文件滚动的以秒为单位的间隔时间。

offset  相对于UTC的时差的分钟数。如果省略,则假定为"0"并使用UTC时间。比如,要指定UTC时差为

"-5小时"的地区的当地时间,则此参数应为"-300"。

filesizeM  指定以filesizeM文件大小滚动,而不是按照时间或时差滚动。

___________________________________________________________

■ 日志轮询生产环境实际配置

___________________________________________________________

按天轮询的常见生产环境实际配置:

[[email protected]_server]vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "/data/www"
    ServerName szk5043.top
   # ServerAlias www.dummy-host.example.com
    ErrorLog "/usr/local/apache2/logs/szk5043.top-error_log"
    CustomLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/szk5043.top-access_%Y%m%d_log 86400" combined
[[email protected]_server ~]# ls /usr/local/apache2/logs
access_log  error_log  httpd.pid  szk5043.top-access_20160402_log  szk5043.top-error_log
[[email protected]_server ~]# cat /usr/local/apache2/logs/szk5043.top-access_20160402_log
127.0.0.1 - - [02/Apr/2016:16:10:17 +0800] "OPTIONS * HTTP/1.0" 200 - "-" "Apache/2.2.31 (Unix) PHP/5.5.31 (internal dummy connection)"
127.0.0.1 - - [02/Apr/2016:16:10:17 +0800] "OPTIONS * HTTP/1.0" 200 - "-" "Apache/2.2.31 (Unix)

___________________________________________________________

日志记录代理IP以及真实客户端:

[[email protected]_server ~]# vim /usr/local/apache2/conf/httpd.conf
    #LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined       #搜索LogFormat关键字,注释原有配置
    LogFormat "%h %{X-FORWARDED-FOR}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined    #添加此行
[[email protected]_server ~]# apachectl graceful
[[email protected]_server ~]# tail -2 /usr/local/apache2/logs/szk5043.top-access_20160402_log
127.0.0.1 - - - [02/Apr/2016:16:20:32 +0800] "OPTIONS * HTTP/1.0" 200 - "-" "Apache/2.2.31 (Unix) PHP/5.5.31 (internal dummy connection)"
112.65.11.52 - - - [02/Apr/2016:16:21:09 +0800] "GET /favicon.ico HTTP/1.1" 200 5558 "http://115.28.241.168/admin.php" "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36"

2.cronolog日志切割

■ 安装rotatelogs 日志切割工具

___________________________________________________________

http://pan.baidu.com/s/1slWp1s5     #百度网盘下载地址
[[email protected]_server src]# tar xf cronolog-1.6.2.tar.gz
[[email protected]_server src]# cd cronolog-1.6.2
[[email protected]_server cronolog-1.6.2]# ./configure 
[[email protected]_server cronolog-1.6.2]# make && make install

■ cronolog日志切割配置说明

___________________________________________________________

#按小时切割
CustomLog "|/usr/local/sbin/cronolog   /usr/local/apache2/logs/access_szk5043.top_%Y%m%d%H.log" combined  
#按天切割(日志不会自动覆盖)
CustomLog "|/usr/local/sbin/cronolog   /usr/local/apache2/logs/access_szk5043.top_%Y%m%d.log" combined  
#按周建议目录,按天轮询
CustomLog "|/usr/local/sbin/cronolog   /usr/local/apache2/logs/%w/access_szk5043.top_%Y%m%d.log" combined

■ 日志轮询生产环境实际配置

___________________________________________________________

[[email protected]_server ~]#vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "/data/www"
    ServerName szk5043.top
   # ServerAlias www.dummy-host.example.com
    ErrorLog "/usr/local/apache2/logs/szk5043.top-error_log"
   #CustomLog "|/usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/szk5043.top-access_%Y%m%d_log 86400" combined    #注释前面配置
    CustomLog "|/usr/local/sbin/cronolog   /usr/local/apache2/logs/access_szk5043.top_%Y%m%d%H.log" combined    #新增此行
</VirtualHost>
[[email protected]_server ~]# cat /usr/local/apache2/logs/access_szk5043.top_2016040217.log
127.0.0.1 - - - [02/Apr/2016:17:12:29 +0800] "OPTIONS * HTTP/1.0" 200 - "-" "Apache/2.2.31 (Unix) PHP/5.5.31 (internal dummy connection)"

3.不记录指定类型日志

[[email protected]_server ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
    ErrorLog "/usr/local/apache2/logs/szk5043.top-error_log"
    SetEnvIr 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/szk5043.top-access_%Y%m%d_log 86400" combined
[[email protected]_server ~]# apachectl graceful
时间: 2024-10-18 09:53:17

Apache日志切割及不记录指定类型日志的相关文章

lamp-日志设置(访问日志切割、不记录静态文件日志、缓存文件过期时间)

访问日志不记录指定类型的文件 在网站大多数元素为静态文件,比如图片.css.js等,这些静态文件都可以不用记录,我们只需要记录哪个ip访问了那个网页就可以: 编辑配置文件 vim /usr/local/apache2.4/conf/extra/httpd-vhosts.conf 在 ErrorLog "logs/111.com-error_log"的下面加入: SetEnvIf Request_URI ".*\.gif$" img SetEnvIf Request_

apache日志切割与不记录指定文件类型日志

1.# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf 修改日志文件为: ErrorLog "logs/test.com-error_log"       错误日志 CustomLog "logs/test.com-access_log" combined  访问日志  相对路径 Apache的common日志格式定义: # vim /usr/local/apache2/conf/httpd.conf <

LNMP--Nginx不记录指定文件日志

编辑Nginx配置文件: [[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf 找到下面一行: log_format combined_realip  '$remote_addr $http_x_forwarded_for [$time_local]' '$host "$request_uri" $status' '"$http_referer" "$http_user_agent"

apache禁止记录指定类型的文件

1.编辑虚拟主机配置文件 vim /usr/local/apache2/conf/extra/httpd-vhosts.conf 2.修改以下配置 在此行ErrorLog "|usr/local/apache2/bin/rotatelogs -l /usr/local/apache2/logs/test.com-error_%Y%m%d_log 86400"底下添加以下配置: SetEnvIf Request_URI ".*\.gif$" image-reguest

centos下简单实现日志切割,并上传至日志服务器。

#!/bin/bash #大于500M的日志上传至日志服务器并清除 count=$[1024*1024*500]#500M file_size=`ll /var/log/httpd/access_log| awk '{print $5}'` passwd="magedu.com"#注意变量最好在expect外定义,不知道什么原因我在expect里面定义不成功 if [ $file_size -gt $count ] then /usr/bin/expect << EOF s

访问日志不记录静态文件、配置访问日志切割、配置静态元素过期时间

访问日志不记录指定类型的文件 一个网站会有很多元素,尤其是图片.js.css等静态的文件非常多,用户每请求一个页面就会访问诸多的图片.js等静态元素,这些元素的请求都会被记录在日志中.如果一个站点访问量很大,那么访问日志文件增长会非常快,这不仅对于服务器的磁盘空间造成影响,更重要的是会影响磁盘的读写速度.实际上这些巨量的静态元素请求记录到日志里的意义并不大,所以可以限制这些静态元素去记录日志,并且需要把日志按天归档,一天一个日志,这样也可以防止单个日志文件过大. 编辑虚拟主机配置文件vim /u

apache的rewrite重写、日志切割、防盗链

一.rewrite重写 mod_rewrite 提供了基于正则表达式规则动态修改传入的请求的 URL 的方法.可以定义任意的的url映射到内部的站点文件中 1演示现象,解决效果,得出rewrite概念 2-1如何实现具体讲解步骤,可以带入原理 2-2实践 3剖析实现原理,提升知识面 4小结 1.rewrite需求 我们在使用Apache做为Web服务器时,有时候出于SEO优化或者是url路径的简洁,需要将输入的url转换成更为友好的url,这时候就可以使用rewrite重写功能. rewrite

Nginx配置:访问日志,日志切割,静态文件不记录日志和过期时间

一.访问日志 1.查看Nginx日志格式 [[email protected] ~]# grep -A2 log_format /usr/local/nginx/conf/nginx.conf log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]' ' $host "$request_uri" $status' ' "$http_referer" "$htt

91.Nginx配置:访问日志,日志切割,静态文件不记录日志和过期时间

一.访问日志 1.查看Nginx日志格式 [[email protected] ~]# grep -A2 log_format /usr/local/nginx/conf/nginx.conflog_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]'' $host "$request_uri" $status'' "$http_referer" "$http_u