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
Post a Comment