How to export (mysqldump) and import a mysql database via command line

How to export (mysqldump) and import a mysql database via command line

Last Updated: 1/24/2015

This article applies to the following services:
  • VPS (Linux only)
  • Dedicated servers (Linux only)

To export a database via the command line, use the following:

mysqldump -p -u USERNAME DATABASE_NAME > DBNAME.sql

You'll be prompted to enter the password.

To import the database back into MySQL, use the following:

mysql -p u USERNAME DATABASE_NAME < DBNAME.sql

You'll be promted to enter the password.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to install Linux Maldat (Linux Malware Scanner)

How to install Linux Maldat (Linux Malware Scanner)Last Updated: 1/07/2015This article applies to...

How to delete all error_log files on cPanel Servers

How to delete all error_log files on cPanel ServersLast Updated: 1/07/2015This article applies to...

How to find the file size of folders in a directory via Linux command line

How to find the file size of folders in a directory via Linux command lineLast Updated:...

How to reboot Apache on a cPanel machine from the Linux command line

How to reboot Apache on a cPanel machine from the Linux command lineLast Updated: 1/07/2015This...

How to compress (tar/gzip) an entire directory in Linux (command line)

How to compress (tar/gzip) an entire directory in Linux (command line)Last Updated: 1/24/2105This...