mysql
Backup your MySQL databases automatically with AutoMySQLBackup
Jul 18th
Found this great script for automatically backing up local mysql databases to local backup storage. Details can be found in this post
The scripts itself lives here:
http://sourceforge.net/projects/automysqlbackup/files/
mysql backups
Feb 3rd
Memo to self:
To back up the databases in shell via ssh do:
mysqldump -h localhost -u xxxxx -p db_name > backup-file.sql
restore with
mysql -h localhost -u xxxxx -p db_name < backup-file.sql