Skip to content

Instantly share code, notes, and snippets.

@haio
Created March 25, 2013 12:01
Show Gist options
  • Save haio/5236674 to your computer and use it in GitHub Desktop.
Save haio/5236674 to your computer and use it in GitHub Desktop.
turn on mysql slow query log
[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