mysql5.7 慢日誌配置

打開慢查詢日誌記錄能夠幫忙咱們優化mysql,通常建議開啓,系統穩定後能夠關閉

環境

  1. 系統 centos7 64位
  2. 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]下加入如下mysql

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%";
相關文章
相關標籤/搜索