FreeNAS & online snapshot backups

Posted on December 31, 2007

Tonight I’ve spent some time playing a bit more with my supernas (FreeNAS). I have managed to learn how to make an automated snapshot style rotating backup system. The key is in the use of UNIX hard-links feature. Deriving from this info and this script (which was wrong by the way), I have built a script that automatically pulls data from my NAS onto my online storage (dreamhost) and rotating it every day (keeping 5 snapshots max).


#!/bin/sh
#
# Easy Automated Snapshot-Style Drive-snapshot using Rsync
# Copyright (C) 2008 Sylvain Rebaud (sylvain at rebaud dot com)
#
# Based on Dan Merschi & Mikes Handy
# Easy Automated Snapshot-Style Backups with Linux and Rsync
# http://www.mikerubel.org/computers/rsync_snapshots/
#
#-- Verify input arguments --
if [ $# -lt 2 ] ; then
echo >&2 "usage: $0 [source] [dest]"
exit 1
fi
#-- Path to backup directory --
BACKUP="$2/snapshot"
#-- Rotating-filesystem-snapshot --
rm -fR ${BACKUP}5
rm -f ${BACKUP}5.date
for i in 4 3 2 1
do
y=`expr $i + 1`
if [ -d ${BACKUP}${i} ]; then mv -f ${BACKUP}${i} ${BACKUP}${y} ; fi
if [ -d ${BACKUP}${i}.date ]; then mv -f ${BACKUP}${i}.date ${BACKUP}${y}.date ; fi
done
date > ${BACKUP}1.date

#-- Taking filesystem snapshot using rsync & hardlinks (backup1) --
#
rsync -aHvz --exclude=".*" --delete --rsh="ssh -c arcfour -o Compression=no -x" --link-dest=../snapshot2 "$1" ${BACKUP}1/
#
#-- End Script --

Then I set up freeNAS to execute a cron job using the following command:

/usr/bin/ssh soothe@plutinosoft.com "./backup/backup.sh root@sylvain.homeip.net:/mnt/bigboy/share/Photos/ backup/Photos"

This tells FreNAS to login to my site (plutinosoft.com) using a RSA key with no passphrase and execute the remote backup script which in turns connects back to my FreeNAS server (using Dynamic DNS host and a RSA key with no passphrase as well) and pull/backup/sync-up the data locally using a rotation of 5 folders.

Phew!

Finally, snapshot1 should be the latest full sync and snapshot2 disk space should be for the differences from snapshot1 (meaning only the files that were deleted later that are not present in snapshot1 anymore), and so on until snapshot5. So total amount of space used is really just a full snapshot plus the changes made and not 5x the full snapshot.

Neat, isnt’it?

Update: I have updated the script to not rely on cp -al which is not available on Freenas and instead use the rsync --link-dest feature recently implemented. This permits to use this script to backup data on a Freenas box as well. I also added a snapshot1.date file to keep track of when the last backup was actually made.

11 Responses to “FreeNAS & online snapshot backups”

  1. […] you’re an advanced FreeNAS/FreeBSD user you may find these two post interesting: FreeNAS & online snapshot backups, with a script how to backup your data to an online hoster, e.g. Bluehost, or this post: Diy NAS […]


  2. B1ng0
    Feb 14, 2008

    Cool! how about submitting that script as a patch to FreeNAS so that they can integrate it and add it to their webinterface for easy configuration :)


  3. Dan Merschi
    Feb 24, 2008

    Nice script, but you can not run this script on FreeNAS just because FreeBSD ‘cp’ don’t support ‘-a’ option.
    Anyway, I fix my script and now is running as expected.

    Regards,
    Dan


  4. Sylvain
    Feb 25, 2008

    The script is not running on FreeNAS, it is running on the server which does the backup (pulling from FreeNAS) so it’s working fine.


  5. Tim
    Mar 26, 2008

    Hi Dan, how did you get around not having the cp -al option?


  6. Sylvain
    Mar 26, 2008

    There seems to be some confusion. The backup script which I showed here is called rsync_snapshots.sh and is on my online server (plutinosoft.com) which has cp -al option. It is executed remotely using ssh by freenas using a cron job. This script connects back to my home freenas (using dynip – sylvain.homeip.net) and rsync from it onto my online server so it’s pulling from my freenas but the cp -al is executed on my online server (where the backups are)…


  7. Tim
    Mar 27, 2008

    I’m using rsync to backup from a development server (fedora), to the box with freenas installed, this then executes the rotation of each backup – needing to use cp -al. I haven’t yet worked out how to replicate this with the freebsd supplied with freenas. I found some reference to cpio, but this doesn’t work with freenas.


  8. Dan Merschi
    May 01, 2008

    Hi Tim
    If you take a look on my script I use rsync -link-dest option to hardlink dir1 on dir2, like that you don’t have to use ‘cp -al dir1 dir2’.
    My answer is late, but sorry.

    Regards,
    Dan


  9. Khash
    Dec 09, 2008

    Question: Why do you need to setup a cron on your Freenas to trigger the pull on your online server? Couldn’t that be achieved by setting up a cron on your online server to start pulling?


  10. Sylvain
    Dec 10, 2008

    I don’t control my online server. It’s hosted (dreamhost).


  11. hello
    Jan 26, 2010

    fyi, you can SSH into your dreamhost server and setup a cron.



Categories

Archives