開啟慢查詢日誌記錄可以幫忙我們優化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%";