如何使用mysqlbinlog 查看数据库变更记录

如何查看mysql的binlog日志:
常见查询:
-- 只查看第一个binlog文件的内容
show binlog events;

-- 查看指定binlog文件的内容
show binlog events in 'binlog.000024'

-- 查看当前正在写入的binlog文件
show master status

-- 获取binlog文件列表
show binary logs;

-- 刷新日志
flush logs;

-- 将binlog日志操作细节输出,比如插入什么数据
show variables like 'binlog_rows_query_log_events';

1 问题如何远程下载日志 --base64-output=decode-rows没有会报错
错误现象:ERROR: Got error reading packet from server: Could not find first log file name in binary log index file

mysqlbinlog -uroot -p -h127.0.0.1 -P3306 --read-from-remote-server binlog.000024 --base64-output=decode-rows -v > xx.log

猜你喜欢

转载自www.cnblogs.com/dachengcheng/p/9810093.html