jojo's blog--快樂憂傷都與你同在
          為夢想而來,為自由而生。 性情若水,風起水興,風息水止,故時而激蕩,時又清平……
          posts - 11,  comments - 30,  trackbacks - 0

          Remote Backups With Rsync


          In this article we explain how to automate the backup of files on remote machines to a centralized server using rsync.

          rsync is a command line utility that is used to synchronize files between two computers over a network to synchronize files between two filesystems. It was written as a replacement for rcp but with many new features. For example it uses an algorithm that will only transfer files that have been modified. SSH will be used to authenticate between the machines and to encrypt the network traffic.

          The situation: We have four machines named: server, machine1, machine2, and machine3. The server has a tape drive that is used to do nightly backups. machine1 is used as a development box and has files that need to be backed up in /src and in /home. machine2 is used for mail and needs /home and /mail to be backed up. machine3 is a web server and needs /home, /var/www, and /etc/httpd backed up.

          Create a shell script for each machine. Simplify your maintenance by placing the scripts in a central location. I like to use /root/scripts. Decide on where you want to log your output. I like /root/logs but another common option is to have the script mail you the output.

          Add entries to your crontab to call the scripts. Make sure you leave enough time before your normal backups of the server that the rsync jobs complete.

          Each night the following will occur:

          1. rsync machine1 -> Server
          2. rsync machine2 -> Server
          3. rsync machine3 -> Server
          4. backup server to tape
          Let's take a look at the flags used for rsync in the examples:

          rsync -ave ssh --numeric-ids --delete machine1:/home /machine1

          • -a:
            Archive mode
          • -v:
            Verbose output
          • -e ssh:
            Specify the remote shell as ssh
          • --numeric-ids:
            Tells rsync to not map user and group id numbers local user and group names
          • --delete:
            Makes server copy an exact copy of the source by removing any files that have been removed on the remote machine
          • machine1:/home:
            The remote machine name, then the directory to be backed up
          • /machine1:
            The directory to place the backup

          Next generate a public private key pair with ssh. Place the public key in the ~/.ssh/authorized_keys file in an account on machine1, machine2, and machine3 that has read access to the directories that need to be backed up. It is best not to use the root account on the remote machines, but you should evaluate the risk in your environment. Test that you can login to these accounts using ssh without using a password.

          Test each one of the rsync scripts. The first time you run rsync will take the longest as it will need to copy all the files from the remote machines and not just the files that have changed.

          Add the /machine1, /machine2, and /machine3 (or whatever you have named them) directories to the servers backup script.

          While this process does not backup the entire remote machine, it will ensure that you will not lose irreplaceable data.

          Starting with the example scripts included in this tutorial there are many changes that can be made to fit your specific circumstances.

          The frequency of the rsyncs can be modified to occur more often or at different times. Simply by adding additional crontab lines the backup from the remote machines could be done everyday at lunch, multiple times a day or even hourly.

          The scripts could also be changed to rotate between multiple backups on the server or could be changed to do some sort of processing on the files before they are backed up. For example if the home directories you are backing up contain web browser caches, they could be removed after the rsync but before the system backup.

          Using this article as a starting point you should create a backup plan that fit your needs.


          Example rsync script for machine1:
          #!/bin/bash

          rsync -ave ssh --numeric-ids --delete machine1:/home /machine1
          rsync -ave ssh --numeric-ids --delete machine1:/src /machine1


          Example rsync script for machine2:
          #!/bin/bash

          rsync -ave ssh --numeric-ids --delete machine2:/home /machine2
          rsync -ave ssh --numeric-ids --delete machine2:/mail /machine2


          Example rsync script for machine3:
          #!/bin/bash

          rsync -ave ssh --numeric-ids --delete machine3:/home /machine3
          rsync -ave ssh --numeric-ids --delete machine3:/var/www /machine3
          rsync -ave ssh --numeric-ids --delete machine3:/etc/httpd /machine3



          Example crontab file logging to a directory:
          # Scripts to rsync machines
          59 20 * * * /root/scripts/sync-machine1.sh >/root/logs/sync-machine1.log 2>&1
          59 21 * * * /root/scripts/sync-machine2.sh >/root/logs/sync-machine2.log 2>&1
          59 22 * * * /root/scripts/sync-machine3.sh >/root/logs/sync-machine3.log 2>&1
          #
          # Nightly Backup script
          59 23 * * * /root/scripts/backup.sh > /root/logs/backup.log 2>&1

          Example crontab file mailing the output:


          # Scripts to rsync machines
          59 20 * * * /root/scripts/sync-machine1.sh
          59 21 * * * /root/scripts/sync-machine2.sh
          59 22 * * * /root/scripts/sync-machine3.sh
          #
          # Nightly Backup script
          59 23 * * * /root/scripts/backup.sh
          posted on 2009-01-20 16:29 Blog of JoJo 閱讀(200) 評論(0)  編輯  收藏 所屬分類: Linux 技術(shù)相關(guān)

          <2025年6月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345

          常用鏈接

          留言簿(6)

          隨筆檔案

          文章分類

          文章檔案

          新聞分類

          新聞檔案

          相冊

          收藏夾

          搜索

          •  

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 阜新| 牡丹江市| 武鸣县| 阿拉尔市| 丰县| 汝阳县| 喀什市| 贺州市| 朝阳县| 康乐县| 九寨沟县| 眉山市| 海伦市| 蓬安县| 巨鹿县| 永兴县| 广安市| 鸡泽县| 北宁市| 蓝山县| 陆川县| 中西区| 安平县| 神池县| 望都县| 天祝| 五家渠市| 白朗县| 武冈市| 宜都市| 连城县| 柏乡县| 个旧市| 佛山市| 普兰店市| 金平| 惠来县| 三江| 宿松县| 北海市| 万全县|