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 trialSean 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.