mysql开启查询日志功能

时间:2022-06-26 17:04:54

1、开启查询日志  https://www.cnblogs.com/kerrycode/p/7130403.html

MYsql 查询日志配置    mysql> show variables like '%general_log%';

还要注意,时执行的所有sql都会别记录下来,方便查看,但是如果重启mysql就会停止记录需要重新设置。

2、开启bin-log日志  https://blog.csdn.net/zdy0_2004/article/details/77435507

修改配置文件/etc/my.cnf,在[mysqld]下添加:

server-id=1
log-bin=mysql-bin

3、开启慢查询日志

https://www.cnblogs.com/luyucheng/p/6265594.html