Backup and restore large mysql database

If you have very large mysql database then it is very hard to backup and restore using the conventional phpmyadmin or any other program ( like bigdump).

In this Tutorial I will explain you how to backup and restore a larger database ( having millions of rows). This tutorial can be used while moving your database from one server to another.

First you need to have shell (ssh) access to your server.You can use any free program like putty to connect your server Then follow the steps:

To Backup Mysql Database

$ mysqldump  -u [uname] -p[pass] [dbname] > [backupfile.sql]
  • [uname] Your database user name
  • [pass] The password for your database (note there is no space between -p and the password)
  • [dbname] The name of your database
  • [backupfile.sql] The file name for your database backup

To Backup Mysql Database with compress

If your mysql database is very big, you might want to compress the output of mysql dump. Just use the mysql backup command below and pipe the output to gzip, then you will get the output as gzip file.

$ mysqldump -u [uname] -p[pass] [dbname] | gzip -9 > [backupfile.sql.gz]

If you want to un compress you database file created in above step the use this command

$ gunzip [backupfile.sql.gz]

To Restore Mysql Database

To restore the database you need to create the database in target machine then use this command

$ mysql -u [uname] -p[pass] [db_to_restore] < [backupfile.sql]

To Restore Compressed Mysql Database

gunzip < [backupfile.sql.gz] | mysql -u [uname] -p[pass] [dbname]

Liked It? Get Free updates in your Email

Delivered by feedburner

One thought on “Backup and restore large mysql database

  1. Pingback: Simple bash script to backup directory and MySQL database to Dropbox - Web Tools

Leave a Reply

Your email address will not be published. Required fields are marked *