MySQL Forums
Forum List  »  Replication

Re: Master replicating "Grant replication" statement to slave..?
Posted by: Rick James
Date: February 24, 2014 05:03PM

"GRANT REPLICATION SLAVE..." is not needed on a Slave that is not also a Master, but there is no harm if it is done.

A way to avoid it replicating is
SET SQL_LOG_BIN = 0;
GRANT REPLICATION SLAVE...;
SET SQL_LOG_BIN = 1;

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Master replicating "Grant replication" statement to slave..?
822
February 24, 2014 05:03PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.