Skip to content

Instantly share code, notes, and snippets.

@Semdevmaster
Created October 8, 2017 16:58
Show Gist options
  • Select an option

  • Save Semdevmaster/dfe1cd0eee9fa7f9a29e7533aa90b8a8 to your computer and use it in GitHub Desktop.

Select an option

Save Semdevmaster/dfe1cd0eee9fa7f9a29e7533aa90b8a8 to your computer and use it in GitHub Desktop.
Экспорт всех баз данных из MySQL
mysqldump --all-databases -u User -p Pass > dumpfile.sql
обратно
mysql -u User -p Pass < dumpfile.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment