欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql配置查询配置_MySQL

程序员文章站 2022-05-22 14:39:50
...
命令行登入.

#开启慢查询

mysql>show variables like '%long%';

mysql>set global long_query_time=2;

mysql>show variables like '%slow%';

slow_query_log off #if slow_query_log is off

mysql>set global show_query_log='ON';

slow_query_log ON



参考:linux下开启mysql慢查询,分析查询语句