Home > Database > Mysql Tutorial > body text

MySQL bug:server-id默认被自动置为1_MySQL

WBOY
Release: 2016-06-01 13:13:19
Original
954 people have browsed it

昨天同事在做主从时,从库报如下错误:

Got fatal error 1236 from master when reading data from binary log: 'Misconfigured master - server id was not set'
Copy after login

粗粗看好像是master的server-id没有设置,但同事做如下查询:
备库采集:root@localhost Fri May 23 14:18:59 2014 14:18:59 [(none)]> show variables like '%server_id%';+---------------+-------+| Variable_name | Value |+---------------+-------+| server_id | 2 | +---------------+-------+主库采集:mysql> show variables like '%server%';+----------------------+-------------------+| Variable_name| Value |+----------------------+-------------------+| character_set_server | latin1|| collation_server | latin1_swedish_ci || server_id| 1 |+----------------------+-------------------+
Copy after login

此时,复制环境的server-id确实是全局唯一的。为何报错?

由于业务是用于存储hadoop的元数据,之前MySQL版本较低,同事用了比master版本高的slave,本以为是这个原因,但在MySQL 的bug列表上发现: 

该发现否定了我们之前的判断,经过同事那边的测试,也确实是这个bug :-)

祝周末愉快,

Good Luck!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!