Skip to content

Instantly share code, notes, and snippets.

@bq1990
Created February 28, 2015 19:47
Show Gist options
  • Save bq1990/7aa4c07a4d8327688da2 to your computer and use it in GitHub Desktop.
Save bq1990/7aa4c07a4d8327688da2 to your computer and use it in GitHub Desktop.
Mysql backup/restore
backup: # mysqldump -u root -p[root_password] [database_name] > dumpfilename.sql
restore:# mysql -u root -p[root_password] [database_name] < dumpfilename.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment