likes
comments
collection
share

MySQL log rotate配置

作者站长头像
站长
· 阅读数 52

logrotate简介

logrotate 是 Linux 系统中用于管理和轮换日志文件的实用工具。它旨在自动管理日志文件的增长,避免日志文件变得过大,从而节省磁盘空间并防止单个日志文件占用过多空间。

以下是 logrotate 的主要功能和特性:

  1. 日志文件轮换logrotate 可以根据配置文件中的规则,定期轮换日志文件。它可以创建一个新的日志文件,并将旧日志文件重命名为备份。

  2. 备份数量:你可以指定保留多少个备份文件。logrotate 会在删除最旧的备份文件之前创建新的备份。

  3. 压缩logrotate 支持对备份的日志文件进行压缩(例如使用 gzipbzip2),以节省空间。

  4. 日志清理:它可以定期清理旧的日志文件,以保持日志文件夹的整洁。

  5. 时间和大小触发:你可以基于日志文件的大小或文件的年龄来触发轮换。比如可以设置当日志文件达到 10MB 时进行轮换,或者每天轮换一次。

  6. 执行自定义脚本:在日志轮换前或后,logrotate 可以执行自定义脚本,以便在日志处理的不同阶段执行特定操作。

  7. 轮换选项:你可以通过配置文件对 logrotate 的行为进行详细配置,例如是否重命名文件、是否保留原始文件、是否发送通知等。

安装

## 安装
yum install -y logrotate crontabs

## 默认配置目录
ls /etc/logrotate.d/

## 手动触发日志切换
logrotate -vf /etc/logrotate.d/mysql-error

或者

使用方法

通常,logrotate 的配置文件位于 /etc/logrotate.conf,或者在 /etc/logrotate.d/ 目录下按应用程序分开存放。在这些配置文件中,你可以定义不同日志文件的轮换规则。例如,下面是一个简单的示例:

/var/log/messages {
    rotate 7
    daily
    compress
    missingok
    notifempty
    create 0640 root adm
}

这段配置表示:

  • /var/log/messages 文件进行日志轮换。
  • 每天进行一次轮换。
  • 只保留最近 7 个备份文件。
  • 使用 gzip 压缩备份。
  • 如果日志文件缺失,则跳过不报错。
  • 如果日志文件为空,则不进行轮换。
  • 创建备份时设置权限为 0640,所有者为 root,组为 adm

通过配置 logrotate,你可以有效地管理系统的日志文件,确保系统运行流畅而不被大量的日志文件拖累。

参数说明

## 参数说明
weekly						每周进行切换
rotate						保留12份归档日志文件
olddir						指定归档的目录
missingok					如不存在该文件也不报错且进入下一轮
minsize						指定日志多大时进行切换,单位字节,可与weekly、monthly一起使用
dateext						对归档的日志文件增加日期后缀,默认格式'%Y%m%d'
copytruncate				
notifempty					如果日志文件为空,不会进行日志归档切换
compress					对归档的日志进行压缩,默认用gzip压缩,文件名以'.gz结尾'

配置Mysql的慢日志

mysql-log-rotate配置

vi /etc/logrotate.d/mysql-log-rotate

# Copyright (c) 2000, 2022, Oracle and/or its affiliates.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2.0,
# as published by the Free Software Foundation.
#
# This program is also distributed with certain software (including
# but not limited to OpenSSL) that is licensed under separate terms,
# as designated in a particular file or component or in included license
# documentation.  The authors of MySQL hereby grant you an additional
# permission to link the program and your derivative works with the
# separately licensed software that they have included with MySQL.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License, version 2.0, for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA

# The log file name and location can be set in
# /etc/my.cnf by setting the "log-error" option
# in either [mysqld] or [mysqld_safe] section as
# follows:
#
# [mysqld]
# log-error=/var/lib/mysql/mysqld.log
#
# In case the root user has a password, then you
# have to create a /root/.my.cnf configuration file
# with the following content:
#
# [mysqladmin]
# password = <secret>
# user= root
#
# where "<secret>" is the password.
#
# ATTENTION: The /root/.my.cnf file should be readable
# _ONLY_ by root !

/var/lib/mysql/data/slow.log {
        # create 600 mysql mysql
         notifempty
         daily
         rotate 30
         missingok
         delaycompress
         dateext
    postrotate
        # just if mysqld is really running
          if test -x /usr/bin/mysqladmin && \
              /usr/bin/mysqladmin -uusername -puserpassword -h 127.0.0.1 ping &>/dev/null
          then
              /usr/bin/mysqladmin -uusername -puserpassword -h 127.0.0.1 flush-logs
          fi
    endscript
}

设置定时任务启动日志轮转功能

使用crontab来定时执行logrotate实现日志的轮转功能。每天23:59执行logrotate进行日志轮转。 编辑crontab文件创建定时任务:

vi /etc/crontab

59 23 * * * /usr/sbin/logrotate -f /etc/logrotate.d/mysql-log-rotate 

然后

systemctl restart crond
转载自:https://juejin.cn/post/7366177335883071499
评论
请登录