ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ 在数据库里面运行,查询是否开启 show variables like '%quer%'; 看到尾off 代表没有开启 在/etc/my.cnf 加入以下图片 slow_query_log = 1 long_query_time = 1 slow_query_log_file = /home/mysql/mysql-slow.log ~~~ ![](https://img.kancloud.cn/6d/bb/6dbbdf50a08d6e3eb0dd380fab05d26f_547x219.png) ~~~ 重启数据库 /etc/init.d/mysql restart 查询是否开启成功 show variables like '%quer%'; ~~~ ![](https://img.kancloud.cn/11/0d/110dd3d8b79691a3fcdc5c8888bd9195_607x392.png) ~~~ on 代表已经开启了,然后在数据库里面运行语句 超过1秒, SELECT SLEEP(3) ~~~ ![](https://img.kancloud.cn/b3/bb/b3bb7224d140afd15220f1b831c20f2b_693x170.png) ~~~ 如上可看到已经记录了,慢查询 ~~~