MySQL慢查询日志和错误日志按天轮询

Linux大全评论1.3K views阅读模式

问题背景
为便于问题排查和减小日志文件大小,需对慢查询日志和错误日志按天轮询

轮询脚本(/data/scripts/mysql-log-rotate):

"/data/dbdata/otherlog/slow_query.log" "/data/dbdata/otherlog/mysql_error.log" {
    create 660 mysql mysql
    dateext
    notifempty
    daily
    maxage 60
    rotate 30
    missingok
    compress
    olddir /data/dbdata/otherlog
             
    postrotate
        if /usr/local/mysql/bin/mysqladmin ping -uroot -S /var/run/mysql/mysql.sock &>/dev/null; then
            /usr/local/mysql/bin/mysqladmin flush-logs -uroot -S /var/run/mysql/mysql.sock
        fi
    endscript
}

CRONTAB信息:
00 00 * * * (/usr/sbin/logrotate -f /data/scripts/mysql-log-rotate >/dev/null 2>&1)

MySQL慢查询日志和错误日志按天轮询

相关阅读:

MySQL慢查询开启及分析方法 http://www.linuxidc.com/Linux/2013-07/87457.htm

分析MySQL慢查询日志的好工具--mysqlsla http://www.linuxidc.com/Linux/2013-06/86447.htm

MySQL前缀索引导致的慢查询 http://www.linuxidc.com/Linux/2013-05/84520.htm

企鹅博客
  • 本文由 发表于 2019年9月7日 06:32:08
  • 转载请务必保留本文链接:https://www.qieseo.com/188593.html

发表评论