时间:2021-07-01 10:21:17 帮助过:4人阅读
1. 只查看第一个 binlog 文件的内容
show binlog events;
2. 查看指定 binlog 文件的内容
show binlog events in ‘mysql-bin.000002‘;
3. 查看当前正在写入的 binlog 文件
show master status\G
4. 获取 binlog 文件列表
show binary logs;
1. 基于 开始/结束时间
mysqlbinlog --start-datetime=‘2013-09-10 00:00:00‘ --stop-datetime=‘2013-09-10 01:01:01‘ -d 库名 二进制文件
2. 基于 pos 值
mysqlbinlog --start-postion=107 --stop-position=1000 -d 库名 二进制文件
指定 开始/结束 时间,并把结果重定向到本地 t.binlog 文件中
mysqlbinlog -u username -p password -hl-db1.dba.beta.cn6.qunar.com -P3306 --read-from-remote-server --start-datetime=‘2013-09-10 23:00:00‘ --stop-datetime=‘2013-09-10 23:30:00‘ mysql-bin.000001 > t.binlog
mysql 对应 binlog 查看
标签:use 日志 基于 datetime san col log bsp div