使用 MYSQLBINLOG 來恢復資料

weixin_33763244發表於2017-11-22
1、修改配置檔案:vim /etc/my.cof
[mysqld]
log-bin=mysql-bin(名字可以改成自己的,如果不改名字的話,預設是以主機名字命名)
2、重新啟動MSYQL服務:systemctl restart mariadb
3、檢視自己的BINLOG的名字是什麼:show binlog events

4、把資料匯入mariadb:mysqlbinlog --start-position=100 --stop-position=200 mysql-bin.000001 | mysql -uroot -p123456




本文轉自 Lee_吉  部落格,原文連結:     http://blog.51cto.com/12173069/2047756   如需轉載請自行聯絡原作者

相關文章