MySQL 多级同步 Master Slave

多级同步,备份,服务器排列情况:

A -> B -> C

在 A、B 之间,A 是 Master,B 是 Slave。

在 B、C 之间,B 是 Master,C 是Slave。

这里最重要的是 B,他既是 Slave,又是 Master。

应该在 my.cnf 中加入下述 2 行:

# binary logging – not required for slaves, but recommended

log-bin=mysql-bin

log-slave-updates

开启 mysql-bin,并在 Slave 更新的同时,也同步更新 mysql-bin。

只有这样,C 才能在 A 更新时,也同步得到更新。

Tags: , ,

Leave a Reply

Your email address will not be published.

*