Skip to content

Instantly share code, notes, and snippets.

@ianthekid
Created October 16, 2014 15:13
Show Gist options
  • Select an option

  • Save ianthekid/7b4d3fbf0e3ea74378ec to your computer and use it in GitHub Desktop.

Select an option

Save ianthekid/7b4d3fbf0e3ea74378ec to your computer and use it in GitHub Desktop.
mysql export and import via ssh
/*
* Export database
*/
mysqldump -u $username -p -h $host $database > database_backup.sql
/*
* Import database
*/
mysql -u $username -p $database < database_backup.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment