仅仅是个人开发过程中遇到的解决办法,不一定都适应但也是一种解决思路!!!(记录一下)
按照网上慢查询日志在/etc/my.cnf中的配置如下
# enable "slow_query_log" mechanism
slow_query_log=1
# the path of doc which used to log "slow_query_log"
slow_query_log_file=/data/mysql-log/slow_query.log -- 自定义慢查询日志所在文件
#slow_query_log_file=/var/lib/mysql/dn1-slow.log -- 默认慢查询日志所在文件
# the threshold value of query time which consumed by "slow_query_log" mechanism
long_query_time=3
进行慢查询测试
select sleep(5);
按照愿景应该将该条SQL作为慢查询记录到slow_query.log之中但是无论怎么尝试都没有记录到慢查询日志的文件中
经过网上查找说是权限问题 之后通过 chmod 777 slow_query.log
给足它权限
[root@dn1 mysql-log]# ll
total 0
-rwxrwxrwx. 1 root mysql 0 Aug 13 21:38 slow_query.log
经过测试 仍然无法将慢查询日志记录到该文件
最后回归到系统默认的慢查询日志文件
# enable "slow_query_log" mechanism
slow_query_log=1
# the path of doc which used to log "slow_query_log"
#slow_query_log_file=/data/mysql-log/slow_query.log -- 自定义慢查询日志所在文件
slow_query_log_file=/var/lib/mysql/dn1-slow.log -- 默认慢查询日志所在文件
# the threshold value of query time which consumed by "slow_query_log" mechanism
long_query_time=3
总结
如果自定义配置失效就使用系统默认的慢查询日志文件路径,别倒腾了!(一步一个坑??????)