Backup MySQL database from MySQLDump File Command Line Linux

To backup your MySQL database from mysqldump file, Simply type the MySQL command mysqldump -u [username] –p[password] [database_name] > [dump_file.sql] on the Linux Ubuntu command line and press enter, and it will take database backup

Restore MySQL database from Dump File Command Line Linux Ubuntu

To restore and backup your MySQL database from mysqldump file, Simply type the MySQL command mysql -u [user] -p [database_name] [mysqlDumpFile].sql on the Linux Ubuntu command line and press enter, and it will restore the