一 主库手动复制至从库
1.1 Master主库锁表
1 mysql> flush tables with read lock; 2 Query OK, 0 rows affected (0.00 sec)
1.2 主库备份
1 [root@master ~]# mysqldump -uroot -p -B mydb > master.sql
说明:-B参数有建库语句。
1.3 从库导入数据库
1 [root@Slave01 ~]# mysql -uroot -padmin < master.sql
1.4 主库解开锁表功能
1 mysql> unlock tables; 2 Query OK, 0 rows affected (0.00 sec)