MySQL Variables slow_query_log_file 数据库 参数变量解释及正确配置使用

本站中文解释

slow_query_log_file变量用于指定慢查询日志文件的路径,让MySQL服务器可以记录超时查询的语句。

要设置此变量,可以在MySQL服务器端使用如下命令:

SET GLOBAL slow_query_log_file = ‘/var/log/mysql/slow_queries.log’;

这会重新设置 slow_query_log_file 变量,让MySQL服务器将慢查询日志记录到/var/log/mysql/slow_queries.log 文件中。

官方英文解释

slow_query_log_file

Command-Line Format --slow-query-log-file=file_name
System Variable slow_query_log_file
Scope Global
Dynamic Yes
Type File name
Default Value host_name-slow.log

The name of the slow query log file. The default value is
host_name-slow.log,
but the initial value can be changed with the
--slow_query_log_file option.


数据运维技术 » MySQL Variables slow_query_log_file 数据库 参数变量解释及正确配置使用