Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are any query/way to show the last queries executed on ALL the server?

share|improve this question

4 Answers

up vote 134 down vote accepted

Additionally, for those blessed with MySQL >= 5.1.12:

1) Execute SET GLOBAL log_output = 'TABLE';
2) Execute SET GLOBAL general_log = 'ON';
3) Take a look at the table mysql.general_log

If you prefer to output to a file:
1) SET GLOBAL log_output = "FILE"; which may be set by default, I think.
2) SET GLOBAL general_log_file = "/path/to/your/logfile.log"
3) SET GLOBAL general_log = 'ON';

I prefer this method because:
  1) you're not editing the my.cnf file and potentially permanently turning on logging
  2) you're not fishing around the filesystem looking for the query log - or even worse, distracted by the need for the perfect destination. /var/log /var/data/log /opt /home/mysql_savior/var
  3) restarting the server leaves you where you started (log is off)

For more information, see
MySQL 5.1 Reference Manual - Server System Variables - general_log

share|improve this answer
1  
11  
+1 for trolling yourself – Eric Muyser Feb 26 '11 at 22:37
2  
You should set the log_output variable before general_log, otherwise the second SET statement is written to a file. – Boann Dec 27 '11 at 10:53
2  
Great UI design. Anyway, MySQL log tables are actually using CSV engine so you can do all that FlipMcF said in the answer about enabling logging into general_log table, and have tail -f of general_log like this: tail -f /var/lib/mysql/mysql/general_log.CSV – user1244798 Mar 2 '12 at 10:09
1  
damn it, the mysql doc for this does not even shot the table parameter. thanks a lot. – Vangel May 27 '12 at 22:22
show 4 more comments

You can enable a general query log for that sort of diagnostic. Generally you don't log all SELECT queries on a production server though, it's a performance killer.

Edit your MySQL config, e.g. /etc/mysql/my.cnf - look for, or add, a line like this

[mysqld]
log = /var/log/mysql/mysql.log

Restart mysql to pick up that change, now you can

tail -f /var/log/mysql/mysql.log

Hey presto, you can watch the queries as they come in.

share|improve this answer
general_log_file and general_log in my my.cnf – moose Nov 14 '11 at 16:15

Maybe you could find that out by looking at the query log.

share|improve this answer

You can look at the following in linux

cd /root

ls -al

vi .mysql_history It may help

share|improve this answer
1  
This looks like it would only work for the official command-line mysql client, and only for queries executed by the root user – golimar Apr 17 at 10:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.