How to restore a MySQL database from a backup

MySQL restore: How to restore a MySQL database from a backup

By Alvin Alexander. Last updated: May 11 2018

MySQL database FAQ: How do I restore a MySQL backup? (Also written as, "How do I restore a mysqldump file?")

Assuming that you’ve created a MySQL backup file as shown in my “MySQL backup - How to Backup a MySQL database” tutorial, you can use the commands shown here to restore your MySQL database.

The MySQL restore process

The process to restore a MySQL database from a backup file created by mysqldump is a simple two-step process:

  1. Create a new MySQL database using the mysqladmin utility.
  2. Restore your database backup to this new database using one of several possible commands.

Step 1) Create your new database

Assuming you have the root password for your MySQL database server, you can create a new database with the mysqladmin command, like this:

mysqladmin -u root -p create mytestdatabase

After you are prompted for the root password, and successfully enter it, the mysqladmin utility will create a new database named mytestdatabase for you. That’s all you have to do to create it.

(You can also log into your MySQL server and then use the CREATE DATABASE command to perform the same task, if you prefer.)

Step 2) Restore the database from the backup file

Next, you can easily restore your old MySQL database from your backup file. Here's a command I just used to test the process of restoring a Drupal database backup file I just created with mysqldump:

mysql -u root -p mytestdatabase < drupaldb-20090505.sql

Warning: Be very careful with this command! In particular, you want to make sure that the database you are restoring to (mytestdatabase in my case) is empty before you run this command.

In this case I’m using a MySQL backup file named drupaldb-20090505.sql to restore the contents of that database to my new database, which I named mytestdatabase. Again, this is very simple, and that's all you have to do.

As mentioned, you can restore your database backup file using several different possible commands, but I think this command is the easiest, and I’ll leave it at that for today.

转载于:https://my.oschina.net/rootliu/blog/1836482

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值