Server1: xxx.xxx.xxx.xxx

server-id=1 
binlog-do-db=sample 
master-host = xxx.xxx.xxx.xxx 
master-user = someuser 
master-password = somepassword 
master-connect-retry = 60 
relay-log = /var/lib/mysql/slave-relay.log 
relay-log-index = /var/lib/mysql/slave-relay-log.index 

Server 2: xxx.xxx.xxx.xxx

server-id=2 
binlog-do-db = sample 
master-host = xxx.xxx.xxx.xxx 
master-user = someuser 
master-password = somepassword 
master-connect-retry = 60 
relay-log = /var/lib/mysql/slave-relay.log 
relay-log-index = /var/lib/mysql/slave-relay-log.index 

I have setup the master master replication configuration on 2 test servers, i have also opened ports for both the mysql 3306 on servers i am facing a problem with slave connection I keep getting the

following errors 101021 19:12:23 [ERROR] Slave I/O: error connecting to master 'root@xxx.xxx.xxx.xxx:3306' - retry-time: 60 retries: 86400, Error_code: 1045

Sever 1 has mysql 5.0.77 and server 2 has mysql version 5.1.41

link|improve this question

60% accept rate
What happens when you telnet xxx.xxx.xxx.xxx 3306 from one server to another? Also, you'll want to set up autoincrement offsets. – ceejayoz May 22 '11 at 23:47
feedback

1 Answer

Your problem appears to be connectivity related. "Replication" in MySQL is just about the most awful computer thing there is, well, except for M$. Anyway, it's impossibly brittle. It's so painful. It's so unreliable and totally not worth it. You know it's not worth it, deep deep down. Especially now that it's owned and controlled by evil. After a decade or so we've finally given up and moved to Mongo sharding. By the way, we'd tried to make 5.0 replicate with 5.1 but could never get it working at all.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.