1、启用MySQL启用二进制日志BinLog方法,先停止MySQL服务器,然后修改My.ini,加入或修改以下配置
server-id = 1
log-bin = binlog
log-bin-index = binlog.index
2、列出所有BinLog文件
$sql = 'show master logs;';
3、列出当前所使用的BinLog文件
$sql = 'show master status;';
4、列出指定BinLog的详细内容
$sql = "show binlog events in 'xxxxxx';";
5、重置BinLog文件,既是清空BinLog命令
$sql = 'reset master';