Backup and restore multiple databases using linux command mysqldumb



 Backup and restore database using linux command mysqldumb is the simplest and the easier method.

 For taking backup of all databases:-
 mysqldump -u root -p --all-databases > dumb.sql

 For Restoring the databases:-
 mysql -u root -p < dumb.sql

Its that easy.

Comments

Popular posts from this blog

CDbConnection failed to open the DB connection mysql 8

/bin/sh^M: bad interpreter: No such file or directory Linux

Send mail from Oracle Solaris OS with attached files