Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Backing up your server
11-03-2007, 10:56 AM
Post: #1
Backing up your server
Does anyone know any software for backing up your server to your computer?
Find all posts by this user
Quote this message in a reply
11-03-2007, 03:25 PM
Post: #2
RE: Backing up your server
The easiest method for backup is using cron.

tar -czvf filename.tar.gz /path/to/directory/for/backup

That will tar.gz a directory recursively. If you also want to backup mysql then add a mysql dump BEFORE the tar command.

mysqldump -uUSERNAME -pPASSWORD mysqldatabasename > /path/to/your/backup/folder/filename.sql

Once the backup is created getting it on a local computer is the more difficult task. I normally cron and ftp to another unix server the backup file. Not sure of the best method for Windows if that's your desktop. I guess if you have FTP open and know the login details (ip, username,password) then it should be ok.
Find all posts by this user
Quote this message in a reply
11-26-2007, 08:03 AM
Post: #3
RE: Backing up your server
I have made a detailed post on my blog regarding backing up websites and blogs in various ways with different tools.
You can check it here:
http://digital-musings.com/2007/11/16/a-...ress-blog/

If you find the information useful, please let me know through a comment.

Smart Blogging Tips - Latest Tech News - Useful Computer Software - Web 2.0 Services at my blog:
http://digital-musings.com
Find all posts by this user
Quote this message in a reply
08-19-2008, 04:38 AM
Post: #4
RE: Backing up your server
Usually I use the cPanel Backup feature, lazy I know but I've not any other option there is a lot on my space to backup and I do it usually once a week + MySQL databases (which I tend to backup more).
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: