Skip to content

Instantly share code, notes, and snippets.

@evancauwenberg
Forked from juampynr/debug.md
Created March 21, 2014 08:29
Show Gist options
  • Save evancauwenberg/9681973 to your computer and use it in GitHub Desktop.
Save evancauwenberg/9681973 to your computer and use it in GitHub Desktop.
# Slow query log
SET GLOBAL query_cache_type=OFF;
SET GLOBAL log_slow_queries = 1;
SET GLOBAL log_queries_not_using_indexes = 'ON';
SET GLOBAL long_query_time = 2;
FLUSH LOGS;
# Log all queries
SET GLOBAL query_cache_type=OFF;
SET global log_output = 'FILE';
SET global general_log_file='/tmp/query.log';
SET global general_log = 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment