一 主库手动复制至从库

1.1 Master主库锁表

 mysql> flush tables with read lock;
Query OK, 0 rows affected (0.00 sec)
 

1.2 主库备份

 [root@master ~]# mysqldump -uroot -p -B mydb > master.sql
说明:-B参数有建库语句。

1.3 从库导入数据库

 [root@Slave01 ~]# mysql -uroot -padmin < master.sql

1.4 主库解开锁表功能

 mysql> unlock tables;
Query OK, 0 rows affected (0.00 sec)
 
05-11 20:12