Duplicate Entire MySQL Database

后端 未结 9 1116
再見小時候
再見小時候 2020-12-04 08:04

Is it posible to duplicate an entire MySQL database on a linux server?

I know I can use export and import but the original database is >25MB so that\'s not ideal.

9条回答
  •  粉色の甜心
    2020-12-04 08:27

    First create the duplicate database:

    CREATE DATABASE duplicateddb;
    

    Make sure the user and permissions are all in place and:

     mysqldump -u admin -p originaldb | mysql -u backup -pPassword duplicateddb; 
    

提交回复
热议问题