标签:需要 user msi 包含 主从复制 删除 数据同步 ant ati
安装MYSQL和实例1
复制实例
主从机上使用相同的usr账户和密码并同时赋予REPLICATION SLAVE和REPLICATION CLIENT权限,前者用于数据同步,后者用于监视SLAVE同步状况:
GRANT REPLICATION SLAVE, REPLICATION CLIENT ON *.* TO usr@‘192.168.0.%‘ IDENTIFIED BY ‘pwd‘;
将主服务器数据dump/export,然后在从数据中import/restore。如果使用Workbench的export和import功能注意import的时候存储过程和方法因为不包含任何Scheme操作或被忽略,需要手动执行对应sql文件以进行创建。
然后执行同步:
C:\Program Files\MySQL\MySQL Server\bin>mysqlreplicate --master=usr:pwd@192.168.0.1 --slave=user:pwd@192.168.0.2 --rpl-user=usr:pwd
将主服务器的my.ini配置中Server_id=1修改Server_id=2
在从服务器的my.ini配置中启用二进制日志
# Binary Logging.
# log-bin
log-bin=mysql-bin
在从服务器数据文件夹Data中修改auto.cnf文件中的server-uuid
[auto]
server-uuid=b1a3dd23-edc7-11e6-81b8-480fcf275eaf
use mysql;
update MySQL.user set authentication_string=password(‘rootpassword‘) where user=‘root‘ ;
标签:需要 user msi 包含 主从复制 删除 数据同步 ant ati
原文地址:http://www.cnblogs.com/richardcuick/p/6380020.html