MySQL Forums
Forum List  »  Replication

I can bypass replication simply like so ??? Is this right ???
Posted by: Tony Nottm
Date: July 28, 2015 08:37AM

Using MySQL 5.1.71

I have setup MASTER MASTER replication on MY_REPLICATED_DB which works.

I have 2 databases : MY_REPLICATED_DB and MY_NORMAL_DB (not the real names !)

However it can be bypassed if I log into mysql command line using the non replicated database name like so:

mysql --user=user_name --password=your_password MY_NORMAL_DB
and issue the following INSERT statement:

mysql> INSERT INTO MY_REPLICATED_DB.MY_TABLE values ('aaaaaaaaa');
If I connect using the following (i.e. no database specified)

mysql --user=user_name --password=your_password
and issue the following INSERT statement to the same table:

mysql> INSERT INTO MY_REPLICATED_DB.MY_TABLE values ('bbbbbbbbb');
it replicates fine.

This is wrong surely ?

Options: ReplyQuote


Subject
Views
Written By
Posted
I can bypass replication simply like so ??? Is this right ???
1501
July 28, 2015 08:37AM


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.