美文网首页
mysql bin-log

mysql bin-log

作者: AGEGG | 来源:发表于2023-07-25 08:56 被阅读0次

开启bin-log

找到my.ini文件,在[mysqld]后面增加如下两行:
log-bin=mysql-bin
binlog-format=Row

查看bin-log配置信息

show variables like 'log_%';

查看bin-log文件信息

mysqlbinlog --no-defaults -vv mysql-bin.000001

show binlog events

生成还原bin-log 的mysql

//mysqlbinlog --no-defaults --start-position=4 --stop-position=641 mysql-bin.000001 > bak.sql

参考:
https://www.cnblogs.com/rjzheng/p/9721765.html

相关文章

网友评论

      本文标题:mysql bin-log

      本文链接:https://www.haomeiwen.com/subject/kievaltx.html