-
-
Save evancauwenberg/9681973 to your computer and use it in GitHub Desktop.
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
# 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