1.查看binlog日志列表
show master logs;
show binary logs;
2.查看master状态,即最后(最新)一个binlog日志的编号名称,及其最后一个操作事件pos结束点(Position)值
show master status
3、查看binlog日志开启模式
show variables like '%binlog_for%';
4、查看第一个binlog文件内容
show binlog events
5、查看指定binlog文件的内容
show binlog events in 'mysql-bin.000416';
6、刷新log日志,自此刻开始产生一个新编号的binlog日志文件
flush logs
注:每当mysqld服务重启时,会自动执行此命令,刷新binlog日志;在mysqldump备份数据时加 -F 选项也会刷新binlog日志
7、重置(清空)所有binlog日志
注:此命令切勿随便执行;此命令一执行,正在运行的maxwell会报错,需删除maxwell库,重新启动maxwell生成新的maxwell库即可
reset master;
mysqlbinlog工具(切换到mysql安装目录下执行)查看binlog日志内容:
.\bin\mysqlbinlog.exe .\data\logs\mysql-bin.000001
行模式(ROW)是base64加密,需添加解密参数--base64-output=decode-rows 和 -v才可正常查看
如: .\bin\mysqlbinlog.exe --base64-output=decode-rows -v .\data\logs\mysql-bin.000001
注:.\data\logs\mysql-bin.000001为binlog为日志路径,另可添加position和时间等参数筛选查看部分内容,具体可查看官方文档说明