網路上寫的設定檔是 /etc/mysql/my.cnf
但我實際去找是在 mariadb.conf.d
底下的 50-server.cnf
才是(可能是 Mysql 跟 MariaDB 的差別?)
$ cd /etc/mysql/mariadb.conf.d
使用 nano 開啟
$ nano 50-server.cnf
進入後會看到 [mysqld]
,直接在下面加上 slow_query 變成:
[mysqld]
# 開啟慢日誌功能
slow_query_log = 1
# 查詢時間超過 2 秒則定義為慢查詢(可自行改秒數)
long_query_time = 2
# 將產生的 slow query log 放到你指定的地方
slow_query_log_file = /var/www/slow_query.log
保存後別忘了重啟資料庫
systemctl restart mariadb.service
先透過 CLI 進入 Mysql (Mariadb)
$ mysql -u root -p
進入後輸入指令
以下 MariaDB [(none)]>
簡稱為 >
> show variables like '%quer%';
會出現以下表格
+---------------------------------+-------------------------+
| Variable_name | Value |
+---------------------------------+-------------------------+
| expensive_subquery_limit | 100 |
| ft_query_expansion_limit | 20 |
| have_query_cache | YES |
| log_queries_not_using_indexes | OFF |
| long_query_time | 2.000000 |
| query_alloc_block_size | 16384 |
| query_cache_limit | 1048576 |
| query_cache_min_res_unit | 4096 |
| query_cache_size | 16777216 |
| query_cache_strip_comments | OFF |
| query_cache_type | ON |
| query_cache_wlock_invalidate | OFF |
| query_prealloc_size | 24576 |
| slow_query_log | ON |
| slow_query_log_file | /var/www/slow_query.log |
| wsrep_reject_queries | NONE |
| wsrep_sst_donor_rejects_queries | OFF |
+---------------------------------+-------------------------+
確認一下 Value
有無符合
slow_query_log 為 ON
long_query_time 為剛剛設定的 2 秒
slow_query_log_file 為你剛剛指定的路徑 /var/www/slow_query.log
符合表示已經設定成功,即可退出 MariaDB
> exit;