-
-
Save steffen-wirth/bd9064e1b6cae4d06595 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
# | |
# Monitor MySQL queries | |
# @author Colin Mollenhour | |
file=$(mysql -Be 'SHOW VARIABLES LIKE "general_log_file";' | tail -n 1 | awk '{print $2;}') | |
echo "SET GLOBAL general_log = 'ON';" | mysql | |
if [ -w "$file" ]; then | |
>$file | |
tail -f $file | |
else | |
sudo bash -c ">$file" | |
sudo tail -f $file | |
fi | |
echo "SET GLOBAL general_log = 'OFF';" | mysql |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment