How do you backup your entire website?

Discussion in 'Site & Server Administration' started by brakai295, Oct 9, 2006.

  1. #1
    Hi,

    I wanted to know what you guys do to backup websites with 1000+ files.
    I've been using my FTP client for the last 4 weeks, but SmartFTP is so slow, it takes 2 hours to download all these seperate little files.

    Ideally I would like one of the following:
    1. An online service provider where I supply my FTP access information and they do the rest > backup all files on a scheduled base and put it in a sperate folder or so...
    2. A little script or software tool that I either install on my server or on my PC that runs scheduled backups and is faster and easier to use than normal FTP clients...

    Whatever the solution is, it should be affordable for a smallish website.
    ANy ideas?

    Cheers,
    Kai
     
    brakai295, Oct 9, 2006 IP
  2. stickman373

    stickman373 Peon

    Messages:
    331
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #2
    What type of hosting do you have? Are you using cpanel? Full site backups would be easy assuming you have cpanel.
     
    stickman373, Oct 9, 2006 IP
  3. eXe

    eXe Notable Member

    Messages:
    4,643
    Likes Received:
    248
    Best Answers:
    0
    Trophy Points:
    285
    #3
    Assuming there are no databases involved, and that your server runs *nix, I suggest simply logging in via ssh & making a tarball of your entire root folder & downloading that tar file via regular HTTP (will be faster):)
     
    eXe, Oct 9, 2006 IP
  4. speedwagon

    speedwagon Peon

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    tar -vczf ~/public_html
    Code (markup):
    then grab public_html.tgz using ftp
     
    speedwagon, Oct 10, 2006 IP
  5. eXe

    eXe Notable Member

    Messages:
    4,643
    Likes Received:
    248
    Best Answers:
    0
    Trophy Points:
    285
    #5
    or move public_html.tgz inside the public_html folder and download it via HTTP;)

    cp public_html.tgz public_html
    Code (markup):
     
    eXe, Oct 10, 2006 IP
  6. speedwagon

    speedwagon Peon

    Messages:
    52
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #6
    that works ;)
     
    speedwagon, Oct 10, 2006 IP