Migrate A MySQL Database To Another Server
Join the DZone community and get the full member experience.
Join For FreeUse the below in SSH to move a MySQL database between servers. Super handy if the database is larger than 7MB and you can't use phpMyAdmin.
mysqldump -h oldhost -u oldusername -poldpassword olddbname | mysql -h newhost -u newusername -pnewpassword newdbname
http://wiki.dreamhost.com/index.php/Migrate_MySQL
MySQL
Database
Opinions expressed by DZone contributors are their own.
Comments