随着mysql运行时间加长,data目录越来越大,经查发现大量binlog日志。先将处理binlog日志记录如下:
只查看第一个binlog文件的内容
show binlog events;
查看指定binlog文件的内容
show binlog events in ‘mysql-bin.000002’;
查看当前正在写入的binlog文件
show master status\G
获取binlog文件列表
show binary logs;
主(master):用命令查看所有日志: show binary logs;
辅(slave):查看哪个二进制正在使用:show slave status\G;
主(master):清理除mysql-bin.000005之外的所有其他二进制日志:purge binary logs to ‘mysql-bin.000005’;
辅(slave):查看正在使用的二进制日志:show master status;
辅(slave):清理除mysql-bin.000005之外的所有其他二进制日志:purge binary logs to ‘mysql-bin.000005’;