打开慢查询日志记录可以帮忙我们优化mysql,一般建议开启,系统稳定后可以关闭
环境
- 系统
centos7 64位
-
mysql
版本5.7.22
[root@localhost ~]# uname -a
Linux localhost.localdomain 2.6.32-754.3.5.el6.x86_64 #1 SMP Tue Aug 14 20:46:41 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost ~]# mysql --version
mysql Ver 14.14 Distrib 5.7.22, for Linux (x86_64) using EditLine wrapper
配置my.cnf
在[mysqld]
下加入以下
slow_query_log=1 #启动慢日志
slow_query_log_file=/var/log/mysql/slow-mysql-query.log # 慢日志重启
long_query_time=1 # 慢日志定义时长1s,看个人产品需求
注意: slow_query_log_file对应目录需要设置成mysql用户权限,或者777,无需自己创建日志文件
查询配置结果
# 查询配置
show variables like "%slow%";
# 查询慢查询时间
show variables like "long_query_time";
# 查询慢查询数量
show status like "%slow_queries%";