|
|
Question : Replication: Stop replication from Master without transferring data to Slaves
|
|
We have 1 master MySQL server (5.0.27 Community Edition), and several slave servers.
We can stop replication at the slave by setting the my.ini to ignore the databases/tables, but we would like to save the bandwidth on our VPN for tables that are going to be ignored. We would like to be able to configure the server to not replicate certain databases/tables.
Any suggestions?
|
Answer : Replication: Stop replication from Master without transferring data to Slaves
|
|
You can do the same thing on the server - just define which databases/tables should be replicated with something like: --- binlog-do-db=exampledb1 binlog-ignore-db=exampledb2 ---
See more info here: http://dev.mysql.com/doc/refman/5.0/en/binary-log.html
|
|
|
|