Skip to content

Instantly share code, notes, and snippets.

@exophunk
Created October 26, 2017 12:45
Show Gist options
  • Select an option

  • Save exophunk/2ba8d3dbe637095fe623107fb6f7c39b to your computer and use it in GitHub Desktop.

Select an option

Save exophunk/2ba8d3dbe637095fe623107fb6f7c39b to your computer and use it in GitHub Desktop.
Commands to import and export ALL databases from mysql
# EXPORT
mysqldump -u root -p --all-databases > alldb.sql
# IMPORT
mysql -u root -p < alldb.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment