时间:2021-07-01 10:21:17 帮助过:8人阅读
从库降级级联库
原架构:
M--S1
|
S2
改为架构:
M--S1--S2
方法
1.S1,S2:
stop slave sql_thread;
2.M :
show master status; 记录下log1 pos1,为下一步准备
3.S1,S2:
start slave until master_log_file=‘log1‘,master_log_pos=pos1;
4.S1
show master status; 记录下 log2 pos2,为下一步准备
5.S2:
stop slave;change master to master_host=‘S1‘ master_log_file=‘log2‘,master_log_pos=pos2;start slave;
6.S1:
start slave;
MySQL 级联库提升从库 从库降级级联库方法
标签:star read 数据 binlog thread 记录 从库 bin stat