How to backup and restore your MySQL database using command line mysqldump?
MySQL is a powerful database engine (from my side of view ;-)) But it also might have several problem. Ie: a corrupted table after database crash. Here the simple way to backup your MySQL database or table from command line. Let’s start… To backup: Login to your server via SSH. I’m usually using the following format: mysqldump -u [username] -p…
Read More »