I'm trying to setup replication between a Windows MySQL server (master) and a Linux (Ubuntu) MySQL server (slave) on a LAN. I have followed the normal replication procedures but cannot get it to work.
[ERROR] Slave I/O: error connecting to master 'ubuntu-slave@'ip:3306' - retry-time: 60 retries: 86400, Error_code: 2013 in mysql error log
I've tried to connect using #mysql -h127.0.0.3 -P3360 -ubuntu-slave -p and all I get is
ERROR 1045 (28000); Access denied for user 'ubuntu-slave'@'127.0.0.3'
I've also tried using DHCP IP's with same MySQL error log error but get
ERROR 2003 (HY000); Can't connect to MySQL server on '198.162.1.103'
It seems to me they are not communicating over the LAN. Is replication possible with this type of setup? Does it require a different approach than what is used for replication on the same machine or platform? If so would someone be so kind as to point me to a good tutorial on the subject.
[ERROR] Slave I/O: error connecting to master 'ubuntu-slave@'ip:3306' - retry-time: 60 retries: 86400, Error_code: 2013 in mysql error log
I've tried to connect using #mysql -h127.0.0.3 -P3360 -ubuntu-slave -p and all I get is
ERROR 1045 (28000); Access denied for user 'ubuntu-slave'@'127.0.0.3'
I've also tried using DHCP IP's with same MySQL error log error but get
ERROR 2003 (HY000); Can't connect to MySQL server on '198.162.1.103'
It seems to me they are not communicating over the LAN. Is replication possible with this type of setup? Does it require a different approach than what is used for replication on the same machine or platform? If so would someone be so kind as to point me to a good tutorial on the subject.