Skip to content

Instantly share code, notes, and snippets.

@kixorz
Last active December 15, 2015 09:59
Show Gist options
  • Select an option

  • Save kixorz/5242651 to your computer and use it in GitHub Desktop.

Select an option

Save kixorz/5242651 to your computer and use it in GitHub Desktop.
Useful commands
#mysql
#export
mysqldump -u root -p <db> > <filename>.sql
#import
mysql -u root -p <db> < <filename>.sql
#mongo
#export
mongodump --username <username> --password <password> --host <host> --out <dir>
#import
mongorestore --host <host> --username <username> --password <password> <dir>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment