rog*_*ore 3 mysql replication amazon-rds
我面临以下错误并且无法修复它。到目前为止,我已经在RDS
.
[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
2015-06-29 11:01:01 8026 [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.41-0ubuntu0.12.04.1-log), even though it is on the slave (version: 5.6.22-log), Error_code: 1193
Run Code Online (Sandbox Code Playgroud)
这是由于 MySQL Master 和 Slave 版本不匹配
下面的消息很清楚,并确认主/从运行不同的版本。变量SERVER_UUID
不受支持,MySQL 5.5
但受支持MySQL 5.6
2015-06-29 11:01:01 8026 [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.41-0ubuntu0.12.04.1-log), even though it is on the slave (version: 5.6.22-log), Error_code: 1193
Run Code Online (Sandbox Code Playgroud)