是否有任何查询/方法可以显示在所有服务器上执行的最后查询?
Is there any query/way to show the last queries executed on ALL servers?
对于那些拥有 MySQL >= 5.1.12 的人,你可以在运行时全局控制这个选项:
For those blessed with MySQL >= 5.1.12, you can control this option globally at runtime:
SET GLOBAL log_output = 'TABLE';
SET GLOBAL general_log = 'ON';
mysql.general_log
如果您更喜欢输出到文件而不是表格:
If you prefer to output to a file instead of a table:
SET GLOBAL log_output = "FILE";
默认.SET GLOBAL general_log_file = "/path/to/your/logfile.log";
SET GLOBAL general_log = 'ON';
我更喜欢这种方法来编辑 .cnf 文件,因为:
I prefer this method to editing .cnf files because:
my.cnf
文件并可能永久开启日志记录/var/log/var/data/log
/opt/home/mysql_savior/var
my.cnf
file and potentially permanently turning on logging/var/log /var/data/log
/opt /home/mysql_savior/var
有关更多信息,请参阅MySQL 5.1 参考手册 - 服务器系统变量 - general_log
这篇关于如何显示在 MySQL 上执行的最后查询?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!