一 主库手动复制至从库
1.1 Master主库锁表
1 mysql> flush tables with read lock; 2 Query OK, 0 rows affected (0.00 sec)
1.2 主库备份
1 [[email protected] ~]# mysqldump -uroot -p -B mydb > master.sql
说明:-B参数有建库语句。
1.3 从库导入数据库
1 [[email protected] ~]# mysql -uroot -padmin < master.sql
1.4 主库解开锁表功能
1 mysql> unlock tables; 2 Query OK, 0 rows affected (0.00 sec)
原文地址:https://www.cnblogs.com/itzgr/p/9908479.html
时间: 2024-11-13 10:27:10