Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Sean Lum
11,949 PointsHow do we include remote mysqldump?
Such as the mysql bin dir on the remote host?
1 Answer

jason phillips
18,131 Pointsyou 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
Sean Lum
11,949 PointsSean Lum
11,949 PointsI understand the CLI access, and thank you for the great example; but I was wondering about the GUI...
jason phillips
18,131 Pointsjason phillips
18,131 PointsWhat program are you using?
Sean Lum
11,949 PointsSean Lum
11,949 PointsThe 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.
jason phillips
18,131 Pointsjason phillips
18,131 PointsHere 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.