nginx

关注公众号 jb51net

关闭
首页 > 网站技巧 > 服务器 > nginx > Logrotate实现每小时切割日志文件

Logrotate如何实现每小时切割日志文件

作者:奋斗的IT小白菜

这篇文章主要介绍了Logrotate如何实现每小时切割日志文件问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

一、Logrotate背景介绍

logrotate 程序是一个日志文件管理工具。

用来把旧的日志文件删除,并创建新的日志文件,我们把它叫做“转储”。

我们可以根据日志文件的大小,也可以根据其天数来转储,这个过程一般通过crontab 定时任务。

1.1 安装

一般在服务器初始化的时候这些工具都已经存在的,但是为了保险,还是手动安装一下:

yum -y install logrotate

服务简单的说明:

服务的主配置文件:/etc/logrotate.conf

在主配置中可以看到 include /etc/logrotate.d 说明我们可以将用户定义的配置直接放到这下面,系统会自动为我们执行。

当然,系统的并不能很好的满足我们需求。

二、logrotate配置介绍

再看看配置模板:

日志文件绝对路径 {
    各种参数...
}

参数包含:

参数说明
daily每天轮替一次
weekly每周轮替一次
monthly每月轮替一次
yearly每年轮替一次
rotate保留几个轮替日志文件
ifempty日志没有内容的时候也进行轮替
notifempty若日志为空,则不进行轮替
create旧日志文件轮替后创建新的日志文件
size日志达到多少后进行rotate
minsize文件容量一定要超过多少后才进行rotate
nocompress轮替但不进行压缩
compress压缩轮替文件
dateext轮替旧日志文件时,文件名添加-%Y %m %d形式日期,可用dateformat选项扩展配置。
dateformat .%s对日期进行格式定制
nodateext旧日志文件不使用dateext扩展名,后面序数自增如"*.log.1"
sharedscripts作用域下文件存在至少有一个满足轮替条件的时候,执行一次prerotate脚本和postrotate脚本。
prerotate/endscript在轮替之前执行之间的命令,prerotate与endscript成对出现。
postrotate/endscript在轮替之后执行之间的命令,postrotate与endscript成对出现。
olddir将轮替的文件移至指定目录下
missingok如果日志文件不存在,继续进行下一个操作,不报错

三、实现每小时切割日志文件

3.1、添加 logrotate 配置文件

vim /etc/logrotate.d/nginx

内容如下:

/data2/data/cp*log/cp.log
 {
copytruncate    
rotate 87600
missingok
ifempty
dateext
dateformat -%Y%m%d-%H 
sharedscripts
postrotate
    if [ -f /usr/local/openresty/nginx/logs/nginx.pid ]; then
        kill -USR1 `cat /usr/local/openresty/nginx/logs/nginx.pid`
    fi
endscript
}

3.2 执行命令

 //手动执行一次轮替:
 /usr/sbin/logrotate -vf /etc/logrotate.d/nginx

执行命令

logrotate [-dv] [-f|--force] [-s|--state statefile] config_file ..

执行命令选项

# logrotate --help
Usage: logrotate [OPTION...] <configfile>
  -d, --debug              Don't do anything, just test (implies -v) 不做实际处理,仅调试
  -f, --force              Force file rotation 强制执行,忽视参数要求
  -m, --mail=command        Command to send mail (instead of `/bin/mail') 发送mail
  -s, --state=statefile    Path of state file 查看状态文件
  -v, --verbose            Display messages during rotation 轮替一次,并显示轮替过程信息
  --version                Display version information 显示logrotate版本
Help options:
  -?, --help                Show this help message
  --usage                  Display brief usage message

3.3加入定时任务

crontab -e

每小时的59分进行切割 内容如下:

# Logrotate
59  * * * * /usr/sbin/logrotate -vf /etc/logrotate.d/nginx

这里只简单地介绍该种定时任务配置。

#格式
*(分钟) *(小时) *(天) *(月) *(周几) 用户 命令
# 若分钟位值为 *,表示0-59之间的任意有效值;
# 若分钟位值为 1,表示每小时的第1分钟;
# 若分钟位值为 */5,表示每5分钟
# 若分钟位值为10,20 表示每小时的第10分钟和第20分钟
# 若分钟位值为10-12 表示每小时的第10、11、12分钟

效果如下:

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文