Skip to content

Instantly share code, notes, and snippets.

@hemanth22
Forked from joseluisq/mysql_query_log.md
Created May 20, 2019 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hemanth22/f38c50a97d4f4bc78c09081616a1dbeb to your computer and use it in GitHub Desktop.
Save hemanth22/f38c50a97d4f4bc78c09081616a1dbeb to your computer and use it in GitHub Desktop.
How to enable the MySQL/MariaDB general query log

How to enable the MySQL/MariaDB general query log

  1. Enter to MySQL/MariaDB server command-line tool (change root with your username and password):
mysql -u root -proot
  1. Set the general log file path:
SET GLOBAL general_log_file='/var/log/mysql/mycustom.log';
  1. Set the log output to file format:
SET GLOBAL log_output = 'FILE';
  1. Enable the server general log:
SET GLOBAL general_log = 'ON';
  1. Show the general log settings:
SHOW VARIABLES LIKE "general_log%";
  1. Try to execute your own SQL query from your app or command-line tool...

  2. View the general log file content:

less /var/log/mysql/mycustom.log
  1. Disable the general server log:
SET GLOBAL general_log = 'OFF';
@hemanth22
Copy link
Author

@hemanth22
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment