当前位置:网站首页>【MySQL】日志
【MySQL】日志
2022-07-06 08:20:00 【敢飞就有天空】
日志
1. 错误日志
错误日志是MySQL中最重要的日志之一,它记录了当MySQL服务启动和停止时,以及服务器在运行过程中发生任何严重错误时的相关信息。当数据库出现任何故障导致无法正常使用时,建议首先查看此日志。该日志是默认开启的,默认存放目录为 /var/log/,默认的日志文件名为 mysqld.log。
# 查看错误日志
# /var/log/mysqlld.log
show variables like '%log_error%';
2. 二进制日志
介绍
二进制日志记录了所有的 DDL语句(数据定义语言)和 DML语句(数据操纵语言),但不包括查询语句(如:SELECT、SHOW)。在MySQL8版本中,二进制日志默认是开启的,二进制日志作用如下:
- 灾难时的数据恢复
- MySQL的主从复制。
# 查看二进制日志
# /var/lib/mysql/binlog
show variables like '%log_bin%';
- log_bin_basename:当前数据库服务器的二进制日志的基础名称(前缀),具体的二进制文件名需要在该basename的基础上加上编号(编号从000001开始)。
- log_bin_index:二进制日志的索引文件,记录当前服务器关联的二进制文件。
格式
如果我们需要配置二进制日志的格式,只需要在 /etc/my.cnf 中配置 binlog_format 参数即可。
# 查看二进制日志格式
show variables like '%binlog_format%';
查看
由于日志是以二进制方式存储的,不能直接读取,需要通过二进制日志查询工具 mysqlbinlog 来查看。
删除
对于比较繁忙的业务系统,每天生成的二进制日志数据巨大,如果长时间不清除,将会占用大量磁盘空间。
# 查看二进制日志的过期时间
show variables like '%binlog_expire_logs_seconds%';
查询日志
查询日志中记录了客户端的所有操作语句,而二进制日志不包含查询数据的SQL语句。默认情况下,查询日志是未开启的。如果需要开启查询日志,可以修改MySQL的配置文件 /etc/my.cnf 文件。开启了查询日志之后,MySQL的数据存放目录,也就是 /var/lib/mysql/ 目录下就会出现 mysql_query.log 文件。之后所有的客户端的增删改查操作都会记录在该日志文件之中,长时间运行后,该日志文件将会非常大。
# 查看查询日志
show variables like '%general%';
慢查询日志
慢查询日志记录了所有执行时间超过参数 long_query_time 设置值并且扫描记录数不小于min_examined_row_limit 的所有的SQL语句的日志,默认未开启。long_query_time 默认为10 秒,最小为 0, 精度可以到微秒。
默认情况下,不会记录管理语句,也不会记录不使用索引进行查找的查询。可以使用log_slow_admin_statements和更改此行为 log_queries_not_using_indexes
上述所有的参数配置完成之后,都需要重新启动MySQL服务器才可以生效。
参考:https://www.bilibili.com/video/BV1Kr4y1i7ru
边栏推荐
- Webrtc series-h.264 estimated bit rate calculation
- 3. File operation 3-with
- [Yugong series] February 2022 U3D full stack class 011 unity section 1 mind map
- wincc7.5下载安装教程(Win10系统)
- Circuit breaker: use of hystrix
- Convolution, pooling, activation function, initialization, normalization, regularization, learning rate - Summary of deep learning foundation
- Step by step guide to setting NFT as an ens profile Avatar
- ESP系列引脚说明图汇总
- flask返回文件下载
- 好用的TCP-UDP_debug工具下载和使用
猜你喜欢
National economic information center "APEC industry +": economic data released at the night of the Spring Festival | observation of stable strategy industry fund
[Yugong series] February 2022 U3D full stack class 011 unity section 1 mind map
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
Convolution, pooling, activation function, initialization, normalization, regularization, learning rate - Summary of deep learning foundation
[research materials] 2022 China yuancosmos white paper - Download attached
Sanzi chess (C language)
【云原生】手把手教你搭建ferry开源工单系统
Zhong Xuegao, who cannot be melted, cannot escape the life cycle of online celebrity products
07- [istio] istio destinationrule (purpose rule)
Pyqt5 development tips - obtain Manhattan distance between coordinates
随机推荐
Hill sort c language
IoT -- 解读物联网四层架构
VMware 虚拟化集群
649. Dota2 Senate
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
Common functions for PHP to process strings
C language - bit segment
On why we should program for all
【云原生】手把手教你搭建ferry开源工单系统
Permutation and combination function
Let the bullets fly for a while
【MySQL】数据库的存储过程与存储函数通关教程(完整版)
远程存储访问授权
08- [istio] istio gateway, virtual service and the relationship between them
Nacos Development Manual
[research materials] 2022 enterprise wechat Ecosystem Research Report - Download attached
Pyqt5 development tips - obtain Manhattan distance between coordinates
It's hard to find a job when the industry is in recession
Learn Arduino with examples
Char to leading 0