Created
March 25, 2013 12:01
-
-
Save haio/5236674 to your computer and use it in GitHub Desktop.
turn on mysql slow query log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mysqld] | |
long_query_time=1 | |
log-slow-queries=/var/log/mysql/log-slow-queries.log | |
and: | |
mkdir /var/log/mysql | |
touch /var/log/mysql/log-slow-queries.log | |
chown mysql.mysql -R /var/log/mysql | |
or: | |
[mysqld] | |
log-slow-queries = slow.log | |
long_query_time = 20 | |
log-queries-not-using-indexes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment