查看當前第一個binlog文件的內容mysql
show binlog events;sql
查看指定binlog文件內容post
show binlog events in 'mysql-bin.000002';server
查看當前正在寫入的binlog 文件rem
show master status\G;it
獲取binlog文件列表io
show binary logs;event
本地查看:ast
1基於開始時間/結束時間date
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庫名 二進制文件
遠程查看:
1:指定開始和結束時間,並把結果重定向到本地t.binlog文件中
mysqlbinlog -u username -p password -h1-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