标签:重启 技术分享 慢查询 linux image mysql安装 inux sele color
找到mysql配置文件(一般在mysql安装目录下)
Windows为my.ini,Linux为my.cnf
[mysqld] slow_query_log = ON slow_query_log_file = ‘自定义路径‘ long_query_time = 1
slow_query_log:是否开启慢查询日志
slow_query_log_file:慢查询日志的位置
long_query_time:慢查询的标准(秒)
重启mysql守护进程/服务,查看是否生效
SHOW VARIABLES LIKE ‘%slow_query%‘; SHOW VARIABLES LIKE ‘%long_query%‘;
尝试慢查询
SELECT SLEEP(3);
标签:重启 技术分享 慢查询 linux image mysql安装 inux sele color
原文地址:https://www.cnblogs.com/amiezhang/p/10203439.html