做一个apache日志回滚和分割的简单配置

介绍

默认apache日志默认不分割的,长时间不清理apache日志就会占满磁盘空间,而且一个整文件既不利于管理也不利于分析统计。(其他日志也如此)

什么cronolog?

cronolog是一个简单的过滤程序,它从标准输入设备读入日志记录,并把这些记录写入到输出文件集,输出文件的名字由一个文件名模板和当前的日期时间组成。cronolog通常与web服务器一起使用,例如apache,用来安全地对日志文件按日期、月或其它特定的区间进行分割。当然也可以配置来分割其他服务的日志,如nginx,lighttpd。

详情参考 man cronolog,这里用apache举例。

安装cronolog

yum -y install cronolog

cronolog官网已经不用了,但是centos的yum已经包含了该软件,所以可以直接下载

配置

apache的虚拟主机的日志的cronolog配置

cat /app/server/httpd/conf/vhosts/test.com.conf

<VirtualHost *:80>
     DocumentRoot /app/www/test.com
     ServerName test.com
     <Directory "/app/www/test.com">
         Options -Indexes FollowSymLinks
         DirectoryIndex index.php index.html
         AllowOverride all
         Order allow,deny
         Allow from all
     </Directory>
     ErrorLog "|/usr/sbin/cronolog /app/server/httpd/logs/test.com-error_%Y%m%d.log"
     CustomLog "|/usr/sbin/cronolog /app/server/httpd/logs/test.com_%Y%m%d.log" combined
</VirtualHost>

在虚拟主机基础配置上修改errorlog和customlog的配置而已,其他配置只是参考,无关cronolog的。

检查

配置完成后检查配置文件是否正常

 /app/server/httpd/bin/apachectl -t
Syntax OK

配置完成后需要完全关闭apache所有进程后再启动

service httpd stop

ps -ef|grep httpd

service httpd start

其实所有的系统操作都应该是谨慎而彻底的,确认上一步进行无误后方可进行下一步操作。

检查cronolog运行情况

ps -ef|grep cronolog
root  1006 1  0 Feb04 ?00:00:01 crond
root 22511  5290  0 15:51 ?00:00:00 /usr/sbin/cronolog /app/server/httpd/logs/wifi-www.luckygz.com_1234-error_%Y%m%d.log
root 22512  5290  0 15:51 ?00:00:00 /usr/sbin/cronolog /app/server/httpd/logs/test.com-error_%Y%m%d.log
root 22513  5290  0 15:51 ?00:00:00 /usr/sbin/cronolog /app/server/httpd/logs/test.com_%Y%m%d.log

检查日志是否开始分割

ls -lh /app/server/httpd/logs/|grep 'test.com'

1.正常情况下日志会按照配置进行分割,例如我这里是test.com_20150215.log
2.重启apache后,要有web请求访问网站,新的日志才会生成,不然的话是看不到效果的,虽然配置已经生效
3.原来的test.com.log还是会存在,你可以保留或者删掉

至此完成基本配置,基本实现需求。

more

但这里还想做多一步,就是日志分割了也依然比较大,因为纯文本很大,所以需要做定期压缩

#!/bin/bash

log_dir='/app/server/httpd/logs'
days='5'
log_bak_dir='/app/server/httpd/logs/bak'


find ${log_dir} -name "*.log" -type f -mtime +${days}|grep -v 'bak' |xargs -I '{}' mv '{}' ${log_bak_dir}

cd ${log_bak_dir}
for i in `ls -1 ${log_bak_dir}`
do
 gzip $i
done

脚本使用了find和一个for循环来完成,最终的效果就自动将匹配条件的日志文件转移到指定目录,然后进行压缩。


BTW顺带说说

apache默认日志的cronolog配置

cat /app/server/httpd/conf/httpd.conf

ErrorLog "|/usr/sbin/cronolog /app/server/httpd/logs/error_log"
CustomLog "|/usr/sbin/cronolog /app/server/httpd/logs/access_log" common

默认的httpd.conf全局日志error_log 和 access_log是不可以直接使用相对路径来进行分割的,所以需要写全路径,如上。


科普时间

cronolog的配置非常简单,可以在apache里直接调用,使用方法也很简便,直接写时间就可以指定时间分割,下面做了一些解释和例子参考。

   cronolog is intended to be used in conjunction with a Web server, such as Apache to split the access log into daily or monthly logs.  For example the Apache configuration directives:

           TransferLog "|/usr/sbin/cronolog /www/logs/%Y/%m/%d/access.log"
           ErrorLog    "|/usr/sbin/cronolog /www/logs/%Y/%m/%d/errors.log"

   would instruct Apache to pipe its access and error log messages into separate copies of cronolog, which would create new log files each day in a directory hierarchy structured by date, i.e. on  31  December
   1996 messages would be written to

           /www/logs/1996/12/31/access.log
           /www/logs/1996/12/31/errors.log

   after midnight the files

           /www/logs/1997/01/01/access.log
           /www/logs/1997/01/01/errors.log

而时间的格式是使用strftime function,不过根据介绍,基本能看懂,%是说明符,H代表0-23小时,24小时制,如此类推

Template format
   Each  character  in  the template represents a character in the expanded filename, except for date and time format specifiers, which are replaced by their expansion.  Format specifiers consist of a ‘%’ fol-
   lowed by one of the following characters:

   %      a literal % character

   n      a new-line character

   t      a horizontal tab character

   Time fields:

   H      hour (00..23)

   I      hour (01..12)

   p      the locale’s AM or PM indicator

   M      minute (00..59)

   S      second (00..61, which allows for leap seconds)

   X      the locale’s time representation (e.g.: "15:12:47")

   Z      time zone (e.g. GMT), or nothing if the time zone cannot be determined

   Date fields:

   a      the locale’s abbreviated weekday name (e.g.: Sun..Sat)

   A      the locale’s full weekday name (e.g.: Sunday .. Saturday)

   b      the locale’s abbreviated month name (e.g.: Jan .. Dec)

   B      the locale’s full month name, (e.g.: January .. December)

   c      the locale’s date and time (e.g.: "Sun Dec 15 14:12:47 GMT 1996")

   d      day of month (01 .. 31)

   j      day of year (001 .. 366)

   m      month (01 .. 12)

   U      week of the year with Sunday as first day of week (00..53, where week 1 is the week containing the first Sunday of the year)

   W      week of the year with Monday as first day of week (00..53, where week 1 is the week containing the first Monday of the year)

   w      day of week (0 .. 6, where 0 corresponds to Sunday)

   x      locale’s date representation (e.g. today in April in Britain: "13/04/97")

   y      year without the century (00 .. 99)

   Y      year with the century (1970 .. 2038)

   Other specifiers may be available depending on the C library’s implementation of the strftime function.

原文链接:http://www.godblessyuan.com/2015/02/15/apache_cronolog_log_split_rollback/

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,816评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,729评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,300评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,780评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,890评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,084评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,151评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,912评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,355评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,666评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,809评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,504评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,150评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,121评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,628评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,724评论 2 351

推荐阅读更多精彩内容