MySQL數(shù)據(jù)庫恢復(fù)(使用mysqlbinlog命令)

binlog是通過記錄二進(jìn)制文件方式來備份數(shù)據(jù),然后在從二進(jìn)制文件將數(shù)據(jù)恢復(fù)到某一時段或某一操作點。

1:開啟binlog日志記錄
修改mysql配置文件mysql.ini,在[mysqld]節(jié)點下添加
代碼如下:
# log-bin
log-bin = E:/log/logbin.log

路徑中不要包含中文和空格。重啟mysql服務(wù)。通過命令行停止和啟動mysql服務(wù)
代碼如下:
c:>net stop mysql;
c:>net start mysql;

進(jìn)入命令行進(jìn)入mysql并查看二進(jìn)制日志是否已經(jīng)啟動
Sql代碼
代碼如下:
mysql>show variables like ‘log_%’;

日志成功開啟后,會在E:/log/目錄下創(chuàng)建logbin.index和logbin.000001兩個文件。logbin.000001就是數(shù)據(jù)庫的備份文件,以后就可以通過此文件對數(shù)據(jù)庫進(jìn)行恢復(fù)操作。

2:查看備份的二進(jìn)制文件
Sql代碼
代碼如下:
c:mysqlbin>mysqlbinlog e:/log/logbin.000001

日后記錄的操作多了,命令行方式基本就用不上了。可以使用將日志導(dǎo)出文件的方式來查看日志內(nèi)容
2.1 導(dǎo)出
Xml代碼
代碼如下:
c:mysqlbin>mysqlbinlog e:/log/logbin.000001 > e:/log/log.txt

“>”: 導(dǎo)入到文件中; “>>”: 追加到文件中
如果有多個日志文件
Sql代碼
代碼如下:
c:mysqlbin> mysqlbinlog e:/log/logbin.000001 > e:/log/log.sql
c:mysqlbin> mysqlbinlog e:/log/logbin.000002 >> e:/log/log.sq

2.2 按指定位置導(dǎo)出:
Sql代碼
代碼如下:
c:mysqlbin>mysqlbinlog –start-position=185 –stop-position=338 e:/log/logbin.000001 > e:/log/log3.txt

2.3 按指定時間導(dǎo)出:
Xml代碼
代碼如下:
c:mysqlbin>mysqlbinlog –start-datetime=”2010-01-07 11:25:56″ –stop-datetime=”2010-01-07 13:23:50″ e:/log/logbin.000001 > e:/log/log_by_date22.txt

3:從備份恢復(fù)數(shù)據(jù)庫
做了一次更新操作,之后日志的內(nèi)容如下:
Sql代碼
代碼如下:
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
DELIMITER /*!*/;
# at 4
#110107 13:23:50 server id 1 end_log_pos 106 Start: binlog v 4, server v 5.1.53-community-log created 110107 13:23:50 at startup
# Warning: this binlog is either in use or was not closed properly.
ROLLBACK/*!*/;
BINLOG ‘
ZqMmTQ8BAAAAZgAAAGoAAAABAAQANS4xLjUzLWNvbW11bml0eS1sb2cAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAABmoyZNEzgNAAgAEgAEBAQEEgAAUwAEGggAAAAICAgC
‘/*!*/;
# at 106
#110107 13:26:58 server id 1 end_log_pos 185 Query thread_id=44 exec_time=1 error_code=0
SET timestamp=1294378018/*!*/;
SET @@session.pseudo_thread_id=44/*!*/;
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
SET @@session.sql_mode=1344274432/*!*/;
SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
/*!C utf8 *//*!*/;
SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=33/*!*/;
SET @@session.lc_time_names=0/*!*/;
SET @@session.collation_database=DEFAULT/*!*/;
BEGIN
/*!*/;
# at 185
#110107 13:26:58 server id 1 end_log_pos 338 Query thread_id=44 exec_time=1 error_code=0
use ncl-interactive/*!*/;
SET TIMESTAMP=1294378018/*!*/;
UPDATE `t_system_id` SET `id_value`=’3000′ WHERE (`table_name`=’t_working_day’)
/*!*/;
# at 338
#110107 13:26:58 server id 1 end_log_pos 365 Xid = 8016
COMMIT/*!*/;
DELIMITER ;
DELIMITER /*!*/;
DELIMITER ;
# End of log file
ROLLBACK /* added by mysqlbinlog */;
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
DELIMITER /*!*/;
# at 4
#110107 13:23:50 server id 1 end_log_pos 106 Start: binlog v 4, server v 5.1.53-community-log created 110107 13:23:50 at startup
# Warning: this binlog is either in use or was not closed properly.
ROLLBACK/*!*/;
BINLOG ‘
ZqMmTQ8BAAAAZgAAAGoAAAABAAQANS4xLjUzLWNvbW11bml0eS1sb2cAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAABmoyZNEzgNAAgAEgAEBAQEEgAAUwAEGggAAAAICAgC
‘/*!*/;
# at 106
#110107 13:26:58 server id 1 end_log_pos 185 Query thread_id=44 exec_time=1 error_code=0
SET TIMESTAMP=1294378018/*!*/;
SET @@session.pseudo_thread_id=44/*!*/;
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
SET @@session.sql_mode=1344274432/*!*/;
SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
/*!C utf8 *//*!*/;
SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=33/*!*/;
SET @@session.lc_time_names=0/*!*/;
SET @@session.collation_database=DEFAULT/*!*/;
BEGIN
/*!*/;
# at 185
#110107 13:26:58 server id 1 end_log_pos 338 Query thread_id=44 exec_time=1 error_code=0
use ncl-interactive/*!*/;
SET TIMESTAMP=1294378018/*!*/;
UPDATE `t_system_id` SET `id_value`=’3000′ WHERE (`table_name`=’t_working_day’)
/*!*/;
# at 338
#110107 13:26:58 server id 1 end_log_pos 365 Xid = 8016
COMMIT/*!*/;
DELIMITER ;
DELIMITER /*!*/;
DELIMITER ;
# End of log file
ROLLBACK /* added by mysqlbinlog */;
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;

3.1 恢復(fù):
Sql代碼
代碼如下:
c:mysqlbin>mysqlbinlog e:/log/logbin.000001 | mysql -u root -p

3.2 按指定位置恢復(fù):
Sql代碼
代碼如下:
c:mysqlbin>mysqlbinlog –start-position=185 –stop-position=338 e:/log/logbin.000001 | mysql -u root -p

3.3 按指定時間恢復(fù):
Xml代碼
代碼如下:
c:mysqlbin>mysqlbinlog –start-datetime=”2010-01-07 11:25:56″ –stop-datetime=”2010-01-07 13:23:50″ e:/log/logbin.000001 | mysql -u root -p

3.4 通過導(dǎo)出的腳本文件恢復(fù)
Sql代碼
代碼如下:
c:mysqlbin>mysql -e “source e:/log/log.sql”

4.其他常用操作
4.1 查看所有日志文件

Sql代碼
代碼如下:
mysql>show master logs;

4.2 當(dāng)前使用的binlog文件
Sql代碼
代碼如下:
mysql>show binlog events g;

4.3 產(chǎn)生一個新的binlog日志文件
Sql代碼
代碼如下:
mysql>flush logs;

4.4 刪除所有二進(jìn)制日志,并從新開始記錄(注意:reset master命令會刪除所有的二進(jìn)制日志)
Sql代碼
代碼如下:
mysql > flush logs;
mysql > reset master;

4.5 快速備份數(shù)據(jù)到sql文件

Sql代碼
代碼如下:
c:mysqlbin>mysqldump -u root -p –opt –quick interactive > e:/log/mysqldump.sql

為了方便查看,把從腳本恢復(fù)的命令在寫一次
Sql代碼
代碼如下:
c:mysqlbin>mysql -e “source e:/log/mysqldump.sql”

? 版權(quán)聲明
THE END
喜歡就支持一下吧
點贊11 分享