- Allison Smith Hilarity
- Asterisk 1.8.0-beta3 Now Available
- Asterisk 1.6.2.11 Now Available
- Asterisk 1.4.35 Now Available
- Asterisk and Kamailio (openser) realtime integration
- The Everything Asterisk Video Collection
- Leif Madsen: Speaking at AstriCon 2010
- SIP STUN support testing
- Automated Testing Update
- Asterisk 1.8.0-beta2 Now Available
- HumBug - Pre BETA Launch Registration
- Branch Merging Changes
- Asterisk 1.8.0-beta1 is Now Available
- Asterisk 1.6.2.10 Now Available
MySQLDump To a Remote Server
I was running out of disk space on a server today. The server had a large database table that was no longer used, so I wanted to archive it and then drop the table. But the server didn’t have enough disk space to dump it out to disk before copying it off to a remote server for archiving.
The first thought was to run mysqldump dump on the destination machine, and to access the database over the network. That however, doesn’t compress or encrypt the data. Plus I would have had to create a mysql user with permission to access the database remotely.
The solution I came up with worked out well: mysqldump directly to the remote host with this command:
mysqldump [mysqldump options] | gzip -c | ssh user@remotehost "cat > /path/to/some-file.sql.gz"
That pipes the mysqldump command through gzip, then to through and SSH connection. SSH on the remote side runs the ‘cat’ command to read the stdin, then redirects that to the actual file where I want it saved.
By Brandon Checketts
http://www.brandonchecketts.com/archives/mysqldump-to-a-remote-server
- Login to post comments
