mysqlDatabase Backup—ZRM

來源:互聯網
上載者:User

標籤:mysql   複製   zrm   

 ZRM是Zmanda Recovery Manager的縮寫,這是一款備份mysql的開源軟體。

 其為http://dl.fedoraproject.org/pub/epel/6/x86_64/repoview/MySQL-zrm.html

一、安裝

    #yum install -y MySQL-zrm

二、建立備用使用者

    #mysql -uroot -p

    mysql>grant select,insert,update,create,drop,reload,shutdown,alter,super,lock    table,replication client on *.* to ‘backup‘@‘localhost‘ identified by ‘backup‘;

    mysql>flush privileges

三、設定檔修改

   #cd /etc/mysql-zrm 

   建議為每個需要備份的資料庫建立一個目錄加以區別,例如備份linux資料庫,則建立linux目錄

   #mkdir linux

   #cp -a mysql-zrm.conf linux

   #cd linux

   #vim mysql-zrm.conf

   backup-level=0                  #0表示全備份,1為增量備份,也可以在命令中指定。

   backup-mode=logical       #備份方式,選擇為邏輯備份

   destination=/data/backup #備份資料存放目錄,預設在/var/log/mysql-zrm下

   retention-policy=4W         #備份檔案儲存時間,4W為一個月

   compress=1                      #備份檔案選擇壓縮,使用gzip

   databases=linux              #選擇要備份的資料庫為linux

   user="backup"                 #備份使用者

   password="backup"    #備份使用者密碼

   socket=/var/lib/mysql/mysql.sock

   verbose=1            #記錄詳細資料

四、備份資料

   #mysql-zrm-scheduler --now --backup-set linux 在目前狀態下對linux資料庫進行完全備份

   #mysql-zrm-scheduler --add --interval weekly --start 3:00 --day-of-week 1 --backup-level 0 --backup-set linux  指定每周一3點對linux資料庫做一次完全備份

   #mysql-zrm-scheduler --add --interval daily --start 1:00 --backup-level 1 --backup-set linux  指定每天1點對資料庫做一次增量備份

   #crontab -l

   0 1 * * * /usr/bin/zrm-pre-scheduler --action backup --backup-set linux --backup-level 1 --interval daily

   0 1 * * 1 /usr/bin/zrm-pre-scheduler --action backup --backup-set linux --backup-level 0 --interval weekly

五、備份資料查詢

   #mysql-zrm-scheduler --query   查看備份議程

   #mysql-zrm-reporter --where backup-set=linux --show backup-status-info  查看備份狀態

   #mysql-zrm-reporter --where backup-set=linux --show backup-performance-info 查看備份結果

   #mysql-zrm --action verify-backup --backup-set linux --verbose 檢驗備份結果

六、恢複

   #mysql-zrm-reporter --show restore-info where backup-set=linux 查看備份資料

   #mysql-zrm --action restore --source=directory /var/lib/mysql-zrm/linux/20140821160716/     --backup-set linux --verbose  進行恢複


本文出自 “不萊梅樂隊” 部落格,謝絕轉載!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.