#是否启用了日志 show variables like ‘log_bin‘; #查看当前日志 show master status; #查看MySQL binlog模式 show variables like ‘binlog_format‘; #获取binglog文件列表 show binary logs; #查看当前正在写入的binlog文件 show master status\G #查看指定binlog文件的内容,注意,binlog日志格式要求为row格式; show binlog event in ‘mysql-bin.000002‘;
原文:https://www.cnblogs.com/weschen/p/14344001.html