mysql打開general log的辦法
mysql打開general log之後,所有的查詢語句都可以在general log
文件中以可讀的方式得到,但是這樣general log文件會非常大,所以默認
都是關閉的。有的時候為了查錯等原因,還是需要暫時打開general log的。
www.2cto.com
mysql@localhost.(none)>show global variables like "%genera%";
+------------------+------------------------------+
| Variable_name | Value |
+------------------+------------------------------+
| general_log | OFF |
| general_log_file | /data1/mysql9999/etch171.log |
+------------------+------------------------------+
2 rows in set (0.00 sec)
mysql@localhost.(none)>set global general_log=on;
Query OK, 0 rows affected (0.02 sec)
mysql@localhost.(none)>set global general_log=off;
Query OK, 0 rows affected (0.00 sec)