Skip to content

Instantly share code, notes, and snippets.

@nghuuphuoc
Created December 9, 2013 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nghuuphuoc/7874407 to your computer and use it in GitHub Desktop.
Save nghuuphuoc/7874407 to your computer and use it in GitHub Desktop.
Backup and restore MySQL database
// Backup
$ mysqldump -u [username] -p [databasename] > [filename.sql]
Enter password:
// Restore
$ mysql -u [username] -p [databasename] < [filename.sql]
Enter password:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment