Remote MySQL Dumps
steamy, export remote MySQL Databases
steamy has several advantages over mysqldump (and many disadvantages).
The main goal of steamy is to make it easy to backup remote MySQL databases. steamy makes database backups fast by relying on SequelPro Saved connections, SSH public keys to the MySQL server your trying to backup from and by running gzip on the sql dump before downloading it to your local machine.
This means that steamy has several requirements.
Install by running
$ gem install steamy
steamy will look for a YAML file located in ~/.steamy which specifies the SequelPro saved connections directory.
The format of the file should look like:
---
:saved_connections: /path/to/db
The path supports path expansion so something like ~/Databases
would work too.