Well, I'm just checking, but I think I made a mistake.
I have one instance of a MySQL server that contains several databases.
I need to replicate each of these databases to another slave device.
more clearly:
DB1 on Server1 replicates on Slave1 DB2 on Server1 replicates on Slave2 ... DBn on Server1 replicates on Slave'n
* Server1 value = separate MySQL instance.
So what are the options?
Create multiple instances of master / server and then replicate its corresponding slave?
[DB1 on Server1 replicates on Slave1] [DB2 on Server2 replicates on Slave2]...
Replicate all databases in bin.log and then filter on the slave configuration?
Is it possible to install multiple bin.log on the same server for each slave?
Without the above three, is there another (better) aproach?
thanks.
source share