Jun 252011
Updated the Slave binary log if the updates are received from a MySQL master
Answer:
When the updates are received from a MySQL master to a slave, it will not be logged in the binary log of the slave server. Sometimes, you might want to enable it, for example, in order to setup a chained replication.
To do so, edit the MySQL configurations, e.g. /etc/my.cnf
..
log-slave-updates
..
Don't forget to restart MySQL to take effect.
# /sbin/service mysqld restart