MYSQL Dump from Command Line
Back up your database from the command line using mysqldump. This works in most Linux based terminals / SSH.
1 |
$ mysqldump --opt -u [uname] -p[pass] [dbname] > [backupfile.sql] |
[uname] Your database username [pass] The password for your database (note there is no space between -p and the … Continued