日志切割

#安装 logrotate

##centos自带
yum -y install logrotate
#配置 logrotate nginx

vim /etc/logrotate.d/nginx

/usr/local/nginx/logs/access.log {       #也可写/usr/local/nginx/logs/*log
    daily
    rotate 7
    dateext
    missingok
    notifempty
    compress
    sharedscripts
    postrotate
        if [ -f /work/logs/nginx/nginx.pid ]; then
            /bin/kill -USR1 $(cat /work/logs/nginx/nginx.pid 2>/dev/null) 2>/dev/null || :
        fi
    endscript
}
#java项目可写

/usr/local/work/end/jjy-jjy/jjy-jjy.log {        #项目日志存放地址
        su jjy jjy
        daily
        rotate 10
        missingok
        notifempty
        dateext
        compress
        delaycompress
        create 644 jjy jjy
        copytruncate
}
###详解###
- /work/logs/nginx/*log 需要轮询日志路径

- su:  使用用户

- create 644 runner root: 以指定的权限创建全新的日志文件,同时logrotate也会重命名原始日志文件。

- daily: 日志文件分割频度。可选值为 daily,monthly,weekly,yearly

- rotate 7: 一次将存储7个归档日志。对于第8个归档,时间最久的归档将被删除。默认保留四个

- dateext 使用日期作为命名格式

- missingok: 在日志轮循期间,任何错误将被忽略,例如“文件无法找到”之类的错误。

- notifempty: 如果日志文件为空,轮循不会进行。

- compress: 在轮循任务完成后,已轮循的归档将使用gzip进行压缩。

- nocompress: 如果你不希望对日志文件进行压缩,设置这个参数即可

- delaycompress: 总是与compress选项一起用,delaycompress选项指示logrotate不要将最近的归档压缩,压缩将在下一次轮循周期进行。这在你或任何软件仍然需要读取最新归档时很有用。

- sharedscripts 表示postrotate脚本在压缩了日志之后只执行一次

- postrotate/endscript: 最通常的作用是让应用重启,以便切换到新的日志文件, 在所有其它指令完成后,postrotate和endscript里面指定的命令将被执行。在这种情况下,rsyslogd 进程将立即再次读取其配置并继续运行。
#启动 logrotate

#设置权限
chmod 644  /etc/logrotate.d/nginx  

#执行
/usr/sbin/logrotate -f   /etc/logrotate.d/jjy

#查看版本
logrotate -v
#logrotate 默认执行时间

logrotate切割时间默认是在每天的3:22。这个时间点可以通过crontab配置文件查看到。如下:

cat /etc/anacrontab

# /etc/anacrontab: configuration file for anacron

# See anacron(8) and anacrontab(5) for details.

SHELL=/bin/sh
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# the maximal random delay added to the base delay of the jobs
RANDOM_DELAY=45
# the jobs will be started during the following hours only
START_HOURS_RANGE=3-22

#period in days   delay in minutes   job-identifier   command
1       5       cron.daily              nice run-parts /etc/cron.daily
7       25      cron.weekly             nice run-parts /etc/cron.weekly
@monthly 45     cron.monthly            nice run-parts /etc/cron.monthly


如果你想在指定时间点,让logrotate切割日志的话,可以修改此配置文件的START_HOURS_RANGE参数。