Binlog文件操作
使用MySQL内部命令查看 Binlog 文件基本信息:
show binary logs; # 管理和监控所有的 binlog 文件, 等价于show master logs;
show master status; # 仅显示当前正在使用的 binlog 文件及其状态信息
show binlog events;
show binlog events in 'mysql-binlog.000001'
About 3 min
使用MySQL内部命令查看 Binlog 文件基本信息:
show binary logs; # 管理和监控所有的 binlog 文件, 等价于show master logs;
show master status; # 仅显示当前正在使用的 binlog 文件及其状态信息
show binlog events;
show binlog events in 'mysql-binlog.000001'