Skip to content

Instantly share code, notes, and snippets.

@acanimal
Created March 22, 2016 11:19
Show Gist options
  • Save acanimal/7f883302efbb06c2cd34 to your computer and use it in GitHub Desktop.
Save acanimal/7f883302efbb06c2cd34 to your computer and use it in GitHub Desktop.
MySQL Tips

Monitor queries

  • Check general_log flag:
mysql> SHOW VARIABLES LIKE "general_log%";

+------------------+----------------------------+
| Variable_name    | Value                      |
+------------------+----------------------------+
| general_log      | OFF                        |
| general_log_file | /var/run/mysqld/mysqld.log |
+------------------+----------------------------+
  • Enable/disable: mysql> SET GLOBAL general_log = 'ON';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment