您好,登录后才能下订单哦!
环境:
RDS版本:阿里云的5.6
ECS自建MySQL5.6.34(官方版本)
通过将阿里云rds的自动全量备份下载到ECS上,按照官方的步骤解压--> aploy-log ---> mv 到mysql的datadir 并启动mysql。
然后执行
reset slave all;
reset master;
change master to master_host='rm-xxxxxxxxx.mysql.rds.aliyuncs.com',
master_user='rpl',
master_password='123456' ,
MASTER_PORT=3306,
MASTER_AUTO_POSITION=1;
这里就报错了。错误日志提示:
2017-06-05 16:35:19 16759 [ERROR] Error reading relay log configuration.
2017-06-05 16:37:00 16759 [ERROR] Error reading master configuration.
原因:
阿里云的RDS是做个修改的版本,和官方部分表结构的不一样。(目前发现的有mysql库下面的slave_master_info、slave_relay_log_info、slave_worker_info,其他的表还没仔细关注)
RDS恢复出来的这3张表里面,比官方的版本多了个Channel_name字段。导致我们change master失败。
下图是我在编译的alisql上面查看的表结构:
解决方法:
use mysql;
drop table slave_master_info;
drop table slave_relay_log_info;
drop table slave_worker_info;
然后参照其他MySQL5.6的机器,重新建这3张表。
完成后,再按照常规的GTID复制的从库搭建步骤操作:
change master to master_host='rm-xxxxxxxxxxx.mysql.rds.aliyuncs.com',
master_user='rpl',
master_password='rpl' ,
MASTER_PORT=3306,
MASTER_AUTO_POSITION=1;
SET GLOBAL gtid_purged='b9f0343a-3ac4-11e7-9769-008cfaf59624:1-6751, d50b0441-3ac4-11e7-976a-7cd30ac47780:1-106693';
start salve;
这样就可以自动开始同步数据了。
(如果用编译安装的alisql则不需要这几步骤,因为阿里云开源出来的ALiSQL和RDS都有Channel_name字段)
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。