mysql 主从关系ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository

连接 amoeba-mysql出现Could not create a validated object, cause: ValidateObject failed

mysql> start slave;
ERROR 1872 (HY000): Slave failed to initialize relay log info structure from the repository

原因:检查my.cnf,原来没指定relay_log,mysql默认产生的relay_log名被该server上的另一个mysql slave占用了。

解决方法:
1.在my.cnf中添加
relay_log=/db/mysql56/logs/relay_98_3326

2. reset slave
mysql>reset slave

mysql>change master to
master_host='192.168.0.38',
master_user='repl',
master_password='slave',
master_port=3306,
master_log_file='mysql-bin.001229',
master_log_pos=15970007;

mysql>start slave;

猜你喜欢

转载自www.cnblogs.com/qxhn/p/8969249.html
今日推荐