1.基本配置

参考文档: https://www.cnblogs.com/clsn/p/8428257.html

1
2
3
4
5
6
7
cat /etc/redhat-release 
uname -r 
安装方法yum -y install logrotate crontabs 
rpm -ql  logrotate 显示软件包信息
/etc/cron.daily/logrotate
/etc/logrotate.conf  # 主配置文件
/etc/logrotate.d     # 配置目录

logrotate的配置文件是/etc/logrotate.conf,通常不需要对它进行修改。
日志文件的轮循设置在独立的配置文件中,它(们)放在/etc/logrotate.d/目录下。
随机生成一个10MB的文件

1
2
# touch /var/log/log-file
# head -c 10M < /dev/urandom > /var/log/log-file 

由于现在日志文件已经准备好,我们将配置logrotate来轮循该日志文件。让我们为该文件创建一个配置文件。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
[root@clsn6 ~]# vim /etc/logrotate.d/log-file 
/var/log/log-file {
    monthly
    rotate 5
    compress
    delaycompress
    missingok
    notifempty
    create 644 root root
    postrotate
        /usr/bin/killall -HUP rsyslogd
    endscript
}

上面的模板是通用的,而配置参数则根据你的需求进行调整,不是所有的参数都是必要的。也可以通过man手册中的例子进行配置。

2.配置文件说明

配置参数 说明
monthly 日志文件将按月轮循。其它可用值为’daily’,‘weekly’或者’yearly’。
rotate 5 一次将存储5个归档日志。对于第六个归档,时间最久的归档将被删除。
compress 在轮循任务完成后,已轮循的归档将使用gzip进行压缩。
delaycompress 总是与compress选项一起用,delaycompress选项指示logrotate不要将最近的归档压缩,压缩将在下一次轮循周期进行。这在你或任何软件仍然需要读取最新归档时很有用。
missingok 在日志轮循期间,任何错误将被忽略,例如“文件无法找到”之类的错误。
notifempty 如果日志文件为空,轮循不会进行。
create 644 root root 以指定的权限创建全新的日志文件,同时logrotate也会重命名原始日志文件。
postrotate/endscript 在所有其它指令完成后,postrotate和endscript里面指定的命令将被执行。在这种情况下,rsyslogd 进程将立即再次读取其配置并继续运行。

以上信息来源 “man logrotate”

3.手动运行logrotate

logrotate可以在任何时候从命令行手动调用。要调用为/etc/lograte.d/下配置的所有日志调用logrotate:

1
2
3
4
5
6
7
8
[root@clsn6 ~]# logrotate /etc/logrotate.conf
要为某个特定的配置调用logrotate,执行一次切割任务测试
[root@clsn6 ~]# ll /var/log/log-file 
-rw-r--r-- 1 root root 10485760 Feb  7 18:50 /var/log/log-file
[root@clsn6 ~]# logrotate -vf /etc/logrotate.d/log-file 
[root@clsn6 ~]# ll /var/log/log-file* 
-rw-r--r-- 1 root root        0 Feb  7 19:17 /var/log/log-file
-rw-r--r-- 1 root root 10485760 Feb  7 18:50 /var/log/log-file.1

即使轮循条件没有满足,我们也可以通过使用‘-f’选项来强制logrotate轮循日志文件,‘-v’参数提供了详细的输出。

4.Logrotate的记录日志

logrotate自身的日志通常存放于/var/lib/logrotate/status目录。
如果处于排障目的,我们想要logrotate记录到任何指定的文件,我们可以指定像下面这样从命令行指定。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
[root@clsn6 ~]# logrotate -vf -s /var/log/logrotate-status /etc/logrotate.d/log-file
reading config file /etc/logrotate.d/log-file
reading config info for /var/log/log-file 

Handling 1 logs

rotating pattern: /var/log/log-file  forced from command line (5 rotations)
empty log files are not rotated, old logs are removed
considering log /var/log/log-file log does not need rotating
not running postrotate script, since no logs were rotated

5.Logrotate定时任务

logrotate需要的cron任务应该在安装时就自动创建了,我把cron文件的内容贴出来,以供大家参考。

1
2
3
4
5
6
7
8
9
[root@clsn6 ~]# cat /etc/cron.daily/logrotate 
#!/bin/sh

/usr/sbin/logrotate /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
    /usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0

6.logrotate生产应用

为nginx设置日志切割,防止访问日志文件过大

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
[root@clsn nginx]# cat /etc/logrotate.d/nginx 
/var/log/nginx/*.log {
    daily
    rotate 5
    missingok
    notifempty
    create 644 www www
    postrotate
      if [ -f /application/nginx/logs/nginx.pid ]; then
          kill -USR1 `cat /application/nginx/logs/nginx.pid`
      fi
    endscript
}

logrotate工具对于防止因庞大的日志文件而耗尽存储空间是十分有用的。
配置完毕后,进程是全自动的,可以长时间在不需要人为干预下运行。
本教程重点关注几个使用logrotate的几个基本样例,你也可以定制它以满足你的需求。

7. 常见配置参数小结

配置参数 说明
compress 通过gzip压缩转储以后的日志
nocompress               不压缩
copytruncate             用于还在打开中的日志文件,把当前日志备份并截断
nocopytruncate           备份日志文件但是不截断
create mode owner group  转储文件,使用指定的文件模式创建新的日志文件
nocreate                 不建立新的日志文件
delaycompress            和 compress 一起使用时,转储的日志文件到下一次转储时才压缩
nodelaycompress          覆盖 delaycompress 选项,转储同时压缩。
errors address           专储时的错误信息发送到指定的Email 地址
ifempty                  即使是空文件也转储,这个是 logrotate 的缺省选项。
notifempty               如果是空文件的话,不转储
mail address              把转储的日志文件发送到指定的E-mail 地址
nomail                   转储时不发送日志文件
olddir directory          转储后的日志文件放入指定的目录,必须和当前日志文件在同一个文件系统
noolddir                 转储后的日志文件和当前日志文件放在同一个目录下
prerotate/endscript      在转储以前需要执行的命令可以放入这个对,这两个关键字必须单独成行
daily                    指定转储周期为每天
weekly                   指定转储周期为每周
monthly                  指定转储周期为每月
rotate count             指定日志文件删除之前转储的次数,0 指没有备份,5 指保留5 个备份
tabooext [+] list 让logrotate不转储指定扩展名的文件,缺省的扩展名是:.rpm-orig, .rpmsave, v, 和 ~
size size                当日志文件到达指定的大小时才转储,bytes(缺省)及KB(sizek)或MB(sizem)
missingok 在日志轮循期间,任何错误将被忽略,例如“文件无法找到”之类的错误。

8.配置例子:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/data/wwwlogs/eagle/access.log
/data/wwwlogs/horizon/nginx_access.log
/data/wwwlogs/hulkweb/nginx_access.log
/data/wwwlogs/portal/nginx_access.log
/data/wwwlogs/portal/nginx_error.log
{
    daily
    missingok
    rotate 8
    compress
    delaycompress
    notifempty
    dateext
    dateformat .%Y%m%d
    sharedscripts
    postrotate
        if [ -f /usr/local/services/openresty_httpsrv/nginx/run/nginx.pid ]; then
          kill -USR1 `cat /usr/local/services/openresty_httpsrv/nginx/run/nginx.pid`
          echo 'restart nginx'
        fi
        cd /usr/local/sandai/arfa/backend
        ../env/bin/supervisorctl -c supervisord.conf reload
    endscript
}