Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools Database Foundations Securing and Maintaining a MySQL Database Backing up and Restoring Databases

How do we include remote mysqldump?

Such as the mysql bin dir on the remote host?

1 Answer

you need to ssh into the box and then ask for the dump.

ssh -f -L3310:localhost:3306 user@remote.server -N
mysqldump -P 3310 -h 127.0.0.1 -u mysql_user -p database_name table_name

I understand the CLI access, and thank you for the great example; but I was wondering about the GUI...

What program are you using?

The course I was doing was using MySQL Workbench. I suppose writing bash scripts or PHP scripts would work just as well with a cron job.

Here is the documentation from the mysql site about export and import.

https://dev.mysql.com/doc/workbench/en/wb-admin-export-import.html

You will also need to add the remote connection in the startup screen if you don't have that set up.