真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

數(shù)據(jù)庫的備份與還原系列——全備份+兩增量的備份與還原-創(chuàng)新互聯(lián)

場景:周日全備份,周一,周二增量備份,周三出現(xiàn)問題,數(shù)分鐘后發(fā)現(xiàn); 數(shù)據(jù)庫的安裝: yum install mariadb-server -y systemctl start mariadb yum install percona-xtrabackup-24-2.4.9-1.el7.x86_64.rpm  在10.2的高版本上默認(rèn)即時innodb_file_per_table;這里的版本是5.5,暫時沒開啟,需要手動寫到配置文件中。 [root@mysql ~]$ vim /etc/my.cnf [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock # Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 innodb_file_per_table log_bin[root@mysql ~]$mysql < hellodb_InnoDB.sql  全備份: [root@mysql ~]$mkdir -pv /backups [root@mysql ~]$ll /backups total 0 [root@mysql ~]$innobackupex /backups/ 周一數(shù)據(jù)修改后;晚上對數(shù)據(jù)進行增量備份; MariaDB [(none)]> use hellodb; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed MariaDB [hellodb]> insert students(name,age,gender) values('a','28','F'); Query OK, 1 row affected (0.01 sec) [root@mysql ~]$mkdir /backups/{inc1,inc2} -pv mkdir: created directory ‘/backups/inc1’ mkdir: created directory ‘/backups/inc2’ [root@mysql ~]$innobackupex --incremental /backups/inc1/ --incremental-basedir=/backups/2018-02-25_15-21-53/     --incremental /backups/inc1/是指這是增量備份,以及備份的位置;     --incremental-basedir=/backups/2018-02-25_15-21-53/是指基于哪個全備份或者增量備份的增量備份; [root@mysql ~]$ll /backups/ total 0 drwxr-x--- 6 root root 187 Feb 25 15:21 2018-02-25_15-21-53 drwxr-xr-x 3 root root  33 Feb 25 15:31 inc1 drwxr-xr-x 2 root root   6 Feb 25 15:25 inc2 [root@mysql ~]$ll /backups/inc1/ total 0 drwxr-x--- 6 root root 213 Feb 25 15:31 2018-02-25_15-31-17 周二的時候修改數(shù)據(jù),并進行增量備份; MariaDB [hellodb]> insert students(name,age,gender) values('b','28','F'); Query OK, 1 row affected (0.01 sec) [root@mysql ~]$innobackupex --incremental /backups/inc2/ --incremental-basedir=/backups/inc1/2018-02-25_15-31-17/ [root@mysql ~]$du -sh /backups/ 23M    /backups/ [root@mysql ~]$scp -pr /backups/ 192.168.27.17:/app/ [root@mysql17 ~]$ls /app/backups/ 2018-02-25_15-21-53  inc1  inc2 [root@mysql17 ~]$

數(shù)據(jù)庫的還原與數(shù)據(jù)整理操作:

創(chuàng)新互聯(lián)建站專注于網(wǎng)站建設(shè),為客戶提供成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計開發(fā)服務(wù),多年建網(wǎng)站服務(wù)經(jīng)驗,各類網(wǎng)站都可以開發(fā),成都品牌網(wǎng)站建設(shè),公司官網(wǎng),公司展示網(wǎng)站,網(wǎng)站設(shè)計,建網(wǎng)站費用,建網(wǎng)站多少錢,價格優(yōu)惠,收費合理。備份還原:     還原的過程中MySQL服務(wù)是不啟動的; 數(shù)據(jù)預(yù)整理:     [root@mysql17 ~]$innobackupex --apply-log --redo-only /app/backups/2018-02-25_15-21-53/         --redo-only表示有相應(yīng)的增量備份; 將第一次增量備份的數(shù)據(jù)合并到完全備份中; [root@mysql17 ~]$innobackupex --apply-log --redo-only /app/backups/2018-02-25_15-21-53/ --incremental-dir=/app/backups/inc1/2018-02-25_15-31-17/ 將第二次增量備份的數(shù)據(jù)合并到完全備份中; [root@mysql17 ~]$innobackupex --apply-log --redo-only /app/backups/2018-02-25_15-21-53/ --incremental-dir=/app/backups/inc2/2018-02-25_15-34-00/ 如果數(shù)據(jù)目錄非空,那么就可以刪除他; [root@mysql17 ~]$ls /var/lib/mysql/ 將整理后的數(shù)據(jù)復(fù)制到數(shù)據(jù)目錄中; [root@mysql17 ~]$innobackupex --copy-back /app/backups/2018-02-25_15-21-53/ [root@mysql17 ~]$ll /var/lib/mysql/ total 18444 drwxr-x--- 2 root root      146 Feb 25 02:48 hellodb -rw-r----- 1 root root 18874368 Feb 25 02:48 ibdata1 drwxr-x--- 2 root root     4096 Feb 25 02:48 mysql drwxr-x--- 2 root root     4096 Feb 25 02:48 performance_schema drwxr-x--- 2 root root       20 Feb 25 02:48 test -rw-r----- 1 root root      481 Feb 25 02:48 xtrabackup_info [root@mysql17 ~]$ [root@mysql17 ~]$chown -R mysql.mysql /var/lib/mysql/ [root@mysql17 ~]$ll /var/lib/mysql/ total 18444 drwxr-x--- 2 mysql mysql      146 Feb 25 02:48 hellodb -rw-r----- 1 mysql mysql 18874368 Feb 25 02:48 ibdata1 drwxr-x--- 2 mysql mysql     4096 Feb 25 02:48 mysql drwxr-x--- 2 mysql mysql     4096 Feb 25 02:48 performance_schema drwxr-x--- 2 mysql mysql       20 Feb 25 02:48 test -rw-r----- 1 mysql mysql      481 Feb 25 02:48 xtrabackup_info [root@mysql17 ~]$

啟動數(shù)據(jù)庫,核對數(shù)據(jù)庫數(shù)據(jù):

[root@mysql17 ~]$systemctl start mariadb [root@mysql17 ~]$mysql Welcome to the MariaDB monitor.  Commands end with ; or \g. Your MariaDB connection id is 2 Server version: 5.5.56-MariaDB MariaDB Server Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> select * from hellodb.students; +-------+---------------+-----+--------+---------+-----------+ | StuID | Name          | Age | Gender | ClassID | TeacherID | +-------+---------------+-----+--------+---------+-----------+ |     1 | Shi Zhongyu   |  22 | M      |       2 |         3 | |     2 | Shi Potian    |  22 | M      |       1 |         7 | |     3 | Xie Yanke     |  53 | M      |       2 |        16 | |     4 | Ding Dian     |  32 | M      |       4 |         4 | |     5 | Yu Yutong     |  26 | M      |       3 |         1 | |     6 | Shi Qing      |  46 | M      |       5 |      NULL | |     7 | Xi Ren        |  19 | F      |       3 |      NULL | |     8 | Lin Daiyu     |  17 | F      |       7 |      NULL | |     9 | Ren Yingying  |  20 | F      |       6 |      NULL | |    10 | Yue Lingshan  |  19 | F      |       3 |      NULL | |    11 | Yuan Chengzhi |  23 | M      |       6 |      NULL | |    12 | Wen Qingqing  |  19 | F      |       1 |      NULL | |    13 | Tian Boguang  |  33 | M      |       2 |      NULL | |    14 | Lu Wushuang   |  17 | F      |       3 |      NULL | |    15 | Duan Yu       |  19 | M      |       4 |      NULL | |    16 | Xu Zhu        |  21 | M      |       1 |      NULL | |    17 | Lin Chong     |  25 | M      |       4 |      NULL | |    18 | Hua Rong      |  23 | M      |       7 |      NULL | |    19 | Xue Baochai   |  18 | F      |       6 |      NULL | |    20 | Diao Chan     |  19 | F      |       7 |      NULL | |    21 | Huang Yueying |  22 | F      |       6 |      NULL | |    22 | Xiao Qiao     |  20 | F      |       1 |      NULL | |    23 | Ma Chao       |  23 | M      |       4 |      NULL | |    24 | Xu Xian       |  27 | M      |    NULL |      NULL | |    25 | Sun Dasheng   | 100 | M      |    NULL |      NULL | |    26 | a             |  28 | F      |    NULL |      NULL | |    27 | b             |  28 | F      |    NULL |      NULL | +-------+---------------+-----+--------+---------+-----------+ 27 rows in set (0.01 sec)

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


標(biāo)題名稱:數(shù)據(jù)庫的備份與還原系列——全備份+兩增量的備份與還原-創(chuàng)新互聯(lián)
文章源于:http://weahome.cn/article/djojep.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部