Backup and recovery
Results 1 to 7 of 7

Thread: Backup and recovery

  1. #1
    Registered User
    Join Date
    Apr 2007
    Posts
    2

    Backup and recovery

    I host web servers for my clients. Does anyone know a reliable tool to back up data on web servers? Some of my servers are Windows-based, some are Linux-based.

  2. #2
    Driver Terrier NooNoo's Avatar
    Join Date
    Dec 2000
    Location
    UK
    Posts
    31,824
    Welcome to Windrivers Gary

    What hardware do you intend to back up to? Tape, DVD, NAS, USB drive?
    Never, ever approach a computer saying or even thinking "I will just do this quickly."

  3. #3
    Registered User
    Join Date
    Apr 2007
    Posts
    2
    Backup to USB drive or Hard disk.

  4. #4
    Registered User Zonie's Avatar
    Join Date
    Apr 2001
    Location
    Phoenix, Arizona
    Posts
    1,461
    Give EZBack-it-up a try. It is also free.
    It's not the computers that keep having problems, it's the users!!

  5. #5
    Registered User WebHead's Avatar
    Join Date
    Oct 2000
    Posts
    8,208
    Windows = ntbackup.exe (the NT backup tool that comes with it -- this is what I use at work)
    or
    Symantec BackupExec = Professional solution,.. kinda expensive but more features included.

    For Linux: command line utilities that come with it (I recommend trying these on non-production systems before trying them on a production system).

    tar = tape archiver utility. You can just create tar files of directories, files or entire file systems.
    I.e.
    # tar cvf /mydata/mybackup.tar /mywebserverdata
    Note: there are all kinds of ways to work with tar files,.. the above is just a quick example

    cpio = copy in and out
    # cd /mywebserverdata
    # find . | cpio -ofB > /mybackupdirectory/mybackupfile.cpio
    Note: again, just a quick example. There is much more support for these commands in your man pages and on the web.

    There are many other commands too. Of course the dump command (requires the file system to be inactive but is the recommended choice), rsync, etc.

    You can even just use the plain vanilla copy command.
    cp = copy command
    i.e.
    archives the data, then verbosely, recursively backs up and only backs up items that are newer than what is currently in the archive.
    # cp -a /mywebserver /backup
    # cp -uvr /mywebserver /backup

    There are lots of ways to do it. Just depends on your exact needs and preferences. I'd say backing up Linux is a peice of cake. Windows on the other hand might take a little more effort to set up properly.
    Hello World

  6. #6
    Registered User
    Join Date
    Apr 2007
    Posts
    1
    I have the same issue. However, FreeBSD adds to my heterogeneous environment.

  7. #7
    Registered User
    Join Date
    Apr 2007
    Posts
    1
    I was sourcing for such a solution earlier. I gathered info from other forums and identified some data backup solutions targeting ISPs and web hosting businesses like ours. Here’s a list which I’ve evaluated:

    1. NovaNet (www.novstor.com)
    2. Ahsay (www.ahsay.com)
    3. Storgrid (www.vembu.com)
    4. RBS (www.remote-backup.com)

    Only Storegrid and Ahsay are multi-platform. I was lured into NovaNet with its attractive look. However, once I tested it on my server, I was disappointed with its instability. RBS is another piece of crappy software.

    In the end I went with Ahsay and was pretty satisfied with it. Back up and restore worked as it says on the tin.

Similar Threads

  1. Found my new external backup device
    By silencio in forum Tech-To-Tech
    Replies: 7
    Last Post: January 19th, 2004, 10:25 AM
  2. Ghosting as a backup
    By tk421 in forum Tech-To-Tech
    Replies: 14
    Last Post: April 4th, 2003, 12:25 PM
  3. Exchange 5.0 Data Recovery
    By Chupaweed in forum Windows NT/2000
    Replies: 2
    Last Post: October 16th, 2002, 12:51 PM
  4. Server Distaster Recovery - Redundancy
    By elhit in forum Tech-To-Tech
    Replies: 3
    Last Post: September 27th, 2002, 03:57 PM
  5. Weirdest XP crash and setup I've seen!!!
    By Dark Millennium in forum Windows XP
    Replies: 4
    Last Post: August 5th, 2002, 06:53 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •