Home >Database >Mysql Tutorial >MySql通过二进制日志文件恢复数据_MySQL

MySql通过二进制日志文件恢复数据_MySQL

WBOY
WBOYOriginal
2016-06-01 13:29:131012browse

bitsCN.com

MySql通过二进制日志文件恢复数据

 

1、Mysql配置实现开启二进制文件

  打开my.ini文件,再里面添加:

#Enter a name for the binary log. Otherwise a default name willbe used.

log-bin=d:/mysql51/logbin.log

 

2、数据恢复操作。

         (1)修改my.ini文件,注释掉下面第二行,否则会出现编码问题。

[client]

default-character-set=GBK

         (2)查看二进制日志文件,导出文本格式,命令如下:

         mysqlbinlogd:/mysql51/logbin.000021 > d:/mysql21.txt

         上面命令的含义是导出二进制日志文件lobbin.000021到d盘下的mysql21.txt文件。

 

         (3)重新执行日志文件中的命令(回滚操作),命令如下:

mysqlbinlogd:/mysql51/logbin.000020 --start-pos=8271 --stop-pos=5073503 | mysql -uroot -p123

上边命令表示从logbin.000020日志文件的8271行开始执行到5073503行进行命令回滚(重新执行)。其中数据库的用户名为root,密码为123

 

bitsCN.com
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn