Dedicated server automatic backup solution

Posted by Luigi on Server Fault See other posts from Server Fault or by Luigi
Published on 2012-04-07T23:19:29Z Indexed on 2012/04/07 23:32 UTC
Read the original article Hit count: 363

Filed under:
|
|
|

I have a dedicated Ubuntu web server in a cloud environment, and I am looking for a nice way to do automated backups.

I would like to backup some directories with web apps, and all my MySql databases. As for destination: make snapshots every two hours localy, and every six hours to a remote ftp server. Also delete backup archives older than seven days(localy + ftp), and notify on any problems by email.

Now to achieve some of this functionality I use cron + shell script, and http://www.mysqldumper.net/, but really that doesn't answer my needs. Mysqldumper doesn't know automaticly about new databases, and shell script does not notify on problems. It's something I have to check out from time to time, and i don't have trust for.

I googled a while, and seems like most people solve this stuff with shell scripts. Is this a method you can trust? Are there any web-gui tools, I'm missing? Maybe there is a smarter startegy for doing this? I'm a little bit confused.

© Server Fault or respective owner

Related posts about linux

Related posts about mysql