Auto backup mysql database to dropbox [closed]
- by Rob
Is it possible to automatically backup my database to dropbox? If so how can I do it?
The key criteria I need it to do is:
Be automatic.
Be Mac compliant.
Be weekly.
Sync with dropbox (http://www.dropbox.com) automatically.
Be able to backup several databases from several websites.
Be free... or relatively cheap!
Have a guide on how to setup the solution.
UPDATE:
I've managed to setup an auto weekly backup using a cronjob:
mysqldump -u username -pMyPassword Mydatabase > backup-file.sql
That is saving the backup to my hosting space. It's a start but isn't ideal, how can I save that backup to a folder on my computer? Automatically of course.