Linux 上使用 backup-manager 進行系統備份
在下一步中,會詢問你要備份的所有目錄(用空格分隔)。建議,但不是嚴格要求,列出同一父目錄中的幾個子目錄,而不要僅僅輸入父目錄。
你可以跳過該步驟並在以後對配置文件中BM_TARBALL_DIRECTORIESb變數進行設置。否則的話,就請儘可能多地添加你想要的目錄,然後選擇OK:
Fedora或CentOS/RHEL
# yum install backup-manager
在CentOS/RHEL上,在運行以上yum命令前,你將需要先啟用EPEL倉庫。
配置備份管理器
備份管理器的主配置文件是/etc/backup-manager.conf。該文件被劃分為幾個章節,裡面定義了備份方法和相關的變數(或「鍵值」),這些配置讓備份管理器成為一個多樣化的工具,可以廣泛地應付各種狀況。
出於演示目的,我們將考慮以下環境:
- 每周對/etc,/home以及/var/log目錄進行一次完整備份(我們將在下面通過cron設置備份的頻率)。
- 通過SSH傳輸.tar.gz備份歸檔文件到兩台不同主機dev1和dev3上指定的目標目錄。
- 通過SSH備份本地MySQL資料庫到相同目標主機。
用你喜愛的文本編輯器打開/etc/backup-manager.conf文件,並編輯以下變數。如果你願意,你大可不必理會那些#開頭的行。在本文中,它只是用作說明的注釋:
# Specify the backup method(s) that will be used.
# tarball: takes a list of directories and builds the corresponding tarballs.
# mysql: archives MySQL databases using mysqldump. To restore the database, you # need to use the same tool manually.
export BM_ARCHIVE_METHOD="tarball mysql"
# Where to store the backups.
export BM_REPOSITORY_ROOT="/var/archives"
# The following directive indicates backup-manager to name
# the generated files after the directory that was backed up.
export BM_TARBALL_NAMEFORMAT="long"
# Define the compression type for the generated files.
export BM_TARBALL_FILETYPE="tar.gz"
# List the directories that you want to backup.
export BM_TARBALL_DIRECTORIES="/etc /home /var/log"
# Exclude some subdirectories or file extensions.
export BM_TARBALL_BLACKLIST="/var/log/myotherapp.log *.mp3 *.mp4"
# List the database(s) that you want to backup, separated by spaces.
export BM_MYSQL_DATABASES="mysql mybase wordpress dotclear phpbb2"
# MySQL username.
export BM_MYSQL_ADMINLOGIN="root"
# MySQL password for username.
export BM_MYSQL_ADMINPASS="mypassword"
# Add support for DROP statements (optional).
export BM_MYSQL_SAFEDUMPS="true"
# The hostname or IP address where the database(s) reside.
export BM_MYSQL_HOST="localhost"
# Port where MySQL server is listening.
export BM_MYSQL_PORT="3306"
# Compression type (optional).
export BM_MYSQL_FILETYPE="gzip"
# Do not archive remote hosts, but only localhost.
BM_TARBALL_OVER_SSH="false"
# User account for SSH upload.
export BM_UPLOAD_SSH_USER="root"
# Absolute path of the user's private key for passwordless SSH login.
export BM_UPLOAD_SSH_KEY="/root/.ssh/id_rsa"
# Remote hosts (make sure you have exported your public key to them):
export BM_UPLOAD_SSH_HOSTS="dev1 dev3"
# Remote destination for uploading backups. If it doesn't exist,
# this directory will be created automatically the first time
# backup-manager runs.
export BM_UPLOAD_SSH_DESTINATION="/var/archives/backups/$HOSTNAME"
運行備份管理器
要手動運行備份管理器,請輸入以下命令。你也可以選擇添加『-v』標識以便一步一步詳細檢查運行過程。
# backup-manager
BM_TARBALL_DIRECTORIES列出的目錄將作為tarball備份到BM_REPOSITORY_ROOT目錄,然後通過SSH傳輸到BM_UPLOAD_SSH_DESTINATION指定的主機dev1和dev3。
正如你在上面圖片中看到的那樣,備份管理器在運行的時候創建了一個名為/root/.back-manager_my.cnf的文件,MySQL密碼通過BM_MYSQL_ADMINPASS指定。那樣,mysqldump可以驗證到MySQL伺服器,而不必在命令行以明文格式接受密碼,那樣會有安全風險。
通過cron運行備份管理器
一旦決定哪一天是進行每周備份的最佳日子(最佳時間),你可以讓cron來為你運行備份管理器。
打開root的crontab文件(注意,你必須以root登錄):
# crontab -e
假定你想要在星期天的上午5:15分運行備份管理器,那麼就添加下面這行。
15 05 * * 0 /usr/sbin/backup-manager > /dev/null 2>&1
小結
在本文中,我已經展示了備份管理器這個備份工具是怎樣的簡單而強大,並且易於使用。在你的備份策略中,你可能還有其它幾個選項需要考慮,請參閱手冊頁或用戶手冊,裡面也包含了幾個部署實例和建議。
希望此文對你有所幫助,請在下面隨意提問和評論。
via: http://xmodulo.com/linux-backup-manager.html
作者:Gabriel Cánepa 譯者:GOLinux 校對:wxy
本文轉載來自 Linux 中國: https://github.com/Linux-CN/archive