Skip to content

Instantly share code, notes, and snippets.

@crichardson9
Created November 20, 2017 14:10
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 crichardson9/05440297d87c945cc053c0df8a9f418a to your computer and use it in GitHub Desktop.
Save crichardson9/05440297d87c945cc053c0df8a9f418a to your computer and use it in GitHub Desktop.
MySQL Database Backup
mysqldump -u [user] -p [database_name] > [filename].sql
mysqldump --opt -Q -u [user] -p [data_name] | gzip > [filename].sql.gz
gunzip [filename].gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment