1. I have a MySQL 5.5 server (community edition) on one Linux server which is master.
2. I have a MySQL 5.6 server (community edition ) on another Linux server which is slave.
3. Statement based Replication has been set up between these two servers.
IF i do
show slave status\G;
I don't see any errors here and replication is working , but when i see count of records it is not increasing at slave end.
Also , slave is continuously receiving relay log files.
I see below error in log file :
[ERROR] Error reading packet from server: Lost connection to MySQL server during query ( server_errno=2013)
[Note] Slave I/O thread: Failed reading log event, reconnecting to retry, log 'mysql-bin.019362' at position 488205064
[Warning] Slave I/O: Notifying master by SET @master_binlog_checksum= @@global.binlog_checksum failed with error: Unknown system variable 'binlog_checksum', Error_code: 1193
[Warning] Slave I/O: Unknown system variable 'SERVER_UUID' on master. A probable cause is that the variable is not supported on the master (version: 5.5.32-log), even though it is on the slave (version: 5.6.26-log), Error_code: 1193
Also i have made changes to
set global binlog_checksum='NONE';
but still condition is same
Please help , what is happening around . Is this because of different versions. But MySQL doc says , replication between two different version is possible.