Wednesday, June 23, 2010

Remote Backups With Rsync

By Noel Davis

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

-----------
VERSI FREEBSD DIARY
-----------
This article originally appeared quite some time ago.  But for some unknown reason, it was lost from the indexes.  I've just come back to upgrade it with some new error observations.We now return you to your regularly scheduled read...
rsync is an amazing and powerful tool for moving files around.   I know of people that use it for file transfers, keeping  dns server records up-to-date, and along with sshd to remote restart the services when rsync reports a file change (how they do that, I don't know, I'm just told they do it).
This article describes how you can use rsync to synchronize file trees.  In this case, I'm using two websites to make sure one is a backup of the other.  As an example, I'll be making sure that one box contains the same files as the other box in case I need to put the backup box into production, should a failure occur.

Overview
rsync can be used in six different ways, as documented in man rsync:
  1. for copying local files. This is invoked when neither source nor destination path contains a : separator
  2. for copying from the local machine to a remote machine using a remote shell program as the transport (such as rsh or ssh). This is invoked when the destination path contains a single : separator.
  3. for copying from a remote machine to the local machine using a remote shell program. This is invoked when the source contains a : separator.
  4. for copying from a remote rsync server to the local machine. This is invoked when the source path contains a :: separator or a rsync:// URL.
  5. for copying from the local machine to a remote rsync server. This is invoked when the destination path contains a :: separator.
  6. for listing files on a remote machine. This is done the same way as rsync transfers except that you leave off the local destination.
I'll only be looking at copying from a remote rsync server (4) to a local machine and when using a remote shell program (2).

This was an easy port to install (aren't they all, for the most part?).   Remember, I have the entire ports tree, so I did this:
# cd /usr/ports/net/rsync
# make install
If you don't have the ports tree installed, you have a bit more work to do.... As far as I know, you need rsync installed on both client and server, although you do not need to be running rsyncd unless you are connecting via method 4.

Setting up the server
In this example, we're going to be using a remote rsync server (4). On the production web server, I created the /usr/local/etc/rsyncd.conf file.  The contents is based on man rsyncd.conf.
uid             = rsync
gid             = rsync
use chroot      = no
max connections = 4
syslog facility = local5
pid file        = /var/run/rsyncd.pid

[www]
        path    = /usr/local/websites/
        comment = all of the websites
You'll note that I'm running rsync as rsync:rsync.  I added lines to vipw and /etc/group to reflect the new user.  Something like this:
rsync:*:4002:4002::0:0:rsync daemon:/nonexistent:/sbin/nologin
and
rsync:*:4002:
Then I started the rsync daemon and verified it was running by doing this:
# rsync --daemon
# ps auwx | grep rsync
root 30114 0.0 3.7 936 500 ?? Ss 7:10PM 0:00.04 rsync --daemon
And I found this in /var/log/messages:
rsyncd[30114]: rsyncd version 2.3.2 starting
Then I verified that I could connect to the daemon by doing this:
# telnet localhost 873
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
@RSYNCD: 21
I determined the port 873 by looking at man rsyncd.conf.
See the security section for more information.
You can also specify a login and user id.  But if you do that, I suggest you make /usr/local/etc/rsyncd.conf non-world readable:
chmod 640 /usr/local/etc/rsyncd.conf
This example is straight from the man page.  Add this to the configuration file:
auth users = tridge, susan
secrets file = /usr/local/etc/rsyncd.secrets
The /usr/local/etc/rsyncd.secrets file would look something like this:
tridge:mypass
susan:herpass
And don't forget to hide that file from the world as well:
chmod 640 /usr/local/etc/rsyncd.secrets


Setting up the client
You may have to install rsync on the client as well.. There wasn't much to set up on the client.  I merely issued the following command.  The rsync server in question is ducky.
rsync -avz ducky::www /home/dan/test
In the above example, I'm connecting to ducky, getting the www collection, and putting it all in /home/dan/test.
And rsync took off!  Note that I have not implemented any security here at all.   See the security section for that.
I checked the output of my first rsync and decided I didn't want everything transferred.  So I modified the command to this:
rsync -avz --exclude nz.freebsd.org/* --exclude wusage/* ducky::www /home/dan/test
See the man pages for more exclusion options.
I also wanted deleted server files to be deleted on the client.  So I did this:
rsync -avz --delete ducky::www /home/dan/test
Of course, you can combine all of these arguments to suit your needs.
I found the --stats option interesting:
Number of files: 2707
Number of files transferred: 0
Total file size: 16022403 bytes
Total transferred file size: 0 bytes
Literal data: 0 bytes
Matched data: 0 bytes
File list size: 44388
Total bytes written: 132
Total bytes read: 44465

My transfers are occur on a trusted network and I'm not worried about the contents of the transfer being observed.  However, you can use ssh as the transfer medium by using the following command:
rsync -e ssh -avz ducky:www test
Note that this differs from the previous example in that you have only one : (colon) not two as in the previous example. See man rsync for details. In this example, we will be grabbing the contents of ~/www from host ducky using our existing user login. The contents of the remote directory will be synchronized with the local directory test.
Now if you try an rsync, you'll see this:
$ rsync -e ssh -avz --delete ducky:www /home/dan/test
Password:
@ERROR: auth failed on module www
Here I supplied the wrong password and I didn't specify the user ID.  I suspect it used my login.  A check of the man page confirmed this.  This was my next attempt.  You can see that I added the user name before the host, ducky..
$ rsync -e ssh -avz --delete susan@ducky:www /home/dan/test
Password:
receiving file list ... done
wrote 132 bytes read 44465 bytes 1982.09 bytes/sec
total size is 16022403 speedup is 359.27
In this case, nothing was transferred as I'd already done several successful rsyncs.
The next section deals with how to use a password in batch mode.

Do it on a regular basis
There's no sense in having an rsync set up if you aren't going to use it on a regular basis.  In order to use rsync from a cron job, you should supply the password in a non-world readable file.  I put my password in /home/dan/test/rsync.password.   Remember to chmod 640 that password file!I put the command into a script file (rsync.sh), which looks like this:
#!/bin/sh
/usr/local/bin/rsync -e ssh -avz --stats --delete susan@ducky::www /home/dan/test --password-file /home/dan/test/rsync.password
Remember to chmod 740 the script file!
Then I put this into /etc/crontab in order to run this command every hour (this should be all on one line):
7 * * * * root /usr/home/dan/rsync.sh 2>&1 | mail -s "rsync script" root
The above will mail you a copy of the output.
If you want to use ssh as your transport medium, I suggest using using the authorized_keys feature.

My comments
I think rsync is one of the most powerful tools I've seen for transferring files around a network and the Internet.  It is just so powerful! Although I actually use cvsup to publish the Diary, I am still impressed with rsync.

I was recently adding some new files to my rsync tree.  I found these errors:
receiving file list ... opendir(log): Permission denied
opendir(fptest): Permission denied
opendir(example.com): Permission denied
opendir(example.org): Permission denied
readlink dan: Permission denied
opendir(default): Permission denied
It took me a while to understand the problem.  It's a read issue.  rsyncd didn't have permission to read the files in question.  You can either make rsynd run as a different user, or change the permissions on the files.
If you get the user id for rsync wrong, you'll see this error:
$ rsync -avz xeon::www /home/dan/rsynctest
@ERROR: invalid uid
I had the rsync user misspelt as rysnc.

38 comments:

Anonymous said...

diazepam 10 mg buy diazepam thailand - diazepam dosage 25mg

Anonymous said...

cheap valium online valium drug dose - valium side effects women

Anonymous said...

can you buy xanax online 1.5mg xanax and alcohol - 5 htp xanax drug interactions

Anonymous said...

diazepam 10mg much diazepam buy - diazepam normal dosage

Anonymous said...

diazepam for dogs diazepam dosage elderly - diazepam valium side effects

Anonymous said...

buy diazepam diazepam or xanax - diazepam for dogs price

Anonymous said...

ativan online lorazepam online ohne rezept - ativan to buy uk

Anonymous said...

buy diazepam diazepam 10mg online bestellen - buy diazepam nz

Anonymous said...

generic lorazepam online lorazepam prices - ativan recreational uses

Anonymous said...

carisoprodol 350 mg soma drug withdrawal - carisoprodol meprobamate

Anonymous said...

buy somas online generic soma pill identification - soma class of medication

Anonymous said...

buy ambien online overnight delivery zolpidem vs ambien - how to buy ambien in mexico

Anonymous said...

buy valium overseas buy valium paypal - 10 mg diazepam generic valium

Anonymous said...

Blogger: [oLa] - Post a Comment purchase ventolin online - ventolin online pharmacy http://www.ventolinforsaleonline.com/#ventolin-online-pharmacy

Anonymous said...

Blogger: [oLa] - Post a Comment buy soma without prescription - order soma http://www.emprendiendoideas.com/#order-soma

Anonymous said...

Anognisse buy generic buspar - cheap buspar http://www.busparspecialoffer.com/

Anonymous said...

Blogger: [oLa] - Post a Comment prednisone medication - prednisone no prescription http://www.ourdailybreadmarket.net/#prednisone-no-prescription

Anonymous said...

Drug Classification Of Zoloft prednisolone no prescription - prednisolone online http://www.prednisone4sale.com/#prednisolone-online

Anonymous said...

Drug Task Force Logos prednisone medication - prednisone no prescription http://www.prednisone4sale.com/#prednisone-no-prescription

Anonymous said...

Herriman Family Medicine acomplia online no prescription - order acomplia http://www.buydiscountedisotretinoin.net/#order-acomplia

Anonymous said...

Allergy Medications Containing Pseudophedrine order topiramate no prescription - order topiramate online http://www.topamaxforless.com/

Anonymous said...

Weight Loss Drugs 20082008 olanzapine without prescription - buy zyprexa http://www.perfectshutdown.com/, [url=http://www.perfectshutdown.com/]buy zyprexa online [/url]

Anonymous said...

Drug Pipeline Definition Bla cheap provigil online - modafinil cost http://www.bearmania.net/, [url=http://www.bearmania.net/]provigil for sale online [/url]

Anonymous said...

Medications For Seasickness how to get diflucan - fluconazole diflucan http://www.diflucansaleonline.net/#fluconazole-diflucan , diflucan pills

Anonymous said...

Drug Free Highs lexapro without prescription - lexapro without rx http://www.costoflexaproonline.net/#lexapro-without-rx , [url=http://www.costoflexaproonline.net/#order-lexapro ]order lexapro [/url]

Anonymous said...

Websites For Drugs sibutramine for sale - buy meridia http://www.meridiaonlineorder.net/#buy-meridia , [url=http://www.meridiaonlineorder.net/#meridia-online ]meridia online [/url]

Anonymous said...

[url=http://vtyupdr.com]LJuNrnMbAzzD[/url] , AaCqDLaVwbomvBYI , http://iluubcb.com

Anonymous said...

6, klonopin generic - generic clonazepam http://www.klonopinonlinediscount.com/#generic-klonopin-online, [url=http://www.klonopinonlinediscount.com/#no-prescription-klonopin]buy cheap klonopin[/url]

Anonymous said...

ooo!!! Order Topamax - order topiramate online http://www.topamaxbestonline.net/#topamax-online, [url=http://www.topamaxbestonline.net/#topamax-online]Topamax Cost[/url]

Anonymous said...

2013 cheap wellbutrin - order zyban http://www.wellbutrinforsaleonline.net/#buy-bupropion, [url=http://www.wellbutrinforsaleonline.net/#zyban-sale]order zyban[/url]

Anonymous said...

Hi, generic lamisil - buy terbinafine online http://www.0101f.com/, [url=http://www.0101f.com/]lamisil no prescription[/url]

Anonymous said...

4, Eszopiclone Price - lunesta mg http://www.lunestasleepaid.net/, [url=http://www.lunestasleepaid.net/] Cheap Eszopiclone [/url]

Anonymous said...

4, Accutane For Sale - buy isotretinoin online http://www.benefitsofisotretinoin.net/, [url=http://www.benefitsofisotretinoin.net/]Accutane For Sale[/url]

Anonymous said...

4, Buy Lunesta - buy lunesta http://www.lunestasleepaid.net/, [url=http://www.lunestasleepaid.net/] Cheap Eszopiclone [/url]

Anonymous said...

2, [url=http://www.handbagsmgmg.com/]Provigil Cost[/url] - Generic Modafinil - provigil online no prescription http://www.handbagsmgmg.com/ .

Anonymous said...

You?ll be able to use a simulation way where you depressed that cube and ahead you Throw away aside your knockout-earned money and omit out on all the fun that thousands of gambling sites Tender. [url=http://www.onlinecasinotaste.co.uk/]online casino[/url] online casinos uk neither the new participant nor one who leaves a lower limit wagering requirement of 25 multiplication. http://www.onlinecasinoburger.co.uk/

Anonymous said...

I like what you guys are up too. Such clever work and exposure!
Keep up the terrific works guys I've included you guys to blogroll.

Also visit my page - Half Price Sky Hd

Anonymous said...

In literal fact, it even graded as one of extensively, reviewing Surveillance footage from the day of the supposed flack. [url=http://www.stevemillikan.com/health-science-faith-forum-posts-links/#comment-61569]more[/url] web site She get-go reported that a man had accosted her and tried to extensively, reviewing Surveillance footage from the day of the alleged flak. http://newborncreators.com/viewtopic.php?f=26&t=20633