欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Mysql复制错误error

程序员文章站 2022-05-20 21:52:52
...

尝试配置 mysql 复制的时候使用 show slave status\G 出现下面的错误: [ERROR] Slave I/O: Master commandCOM_REGISTER_SLAVE failed: Accessdenied for user 'replica'@'12.34.56.78' (using password: YES) ( Errno: 1045 ), Error_code:1597 [ERROR]Slav

尝试配置mysql复制的时候使用show slave status\G出现下面的错误:

[ERROR] Slave I/O: Master commandCOM_REGISTER_SLAVE failed: Accessdenied for user 'replica'@'12.34.56.78' (using password: YES) (Errno: 1045), Error_code:1597

[ERROR]Slave I/O thread couldn't register on master

看这个错误是因为权限不够被拒绝,查了一下文档还需要在master上对复制账号增加下面的权限:

#(master server) add grant to replica user to connect from the new slave server

mysql>grant replication slave on *.* to 'replica'@'new_slave_name_or_ip' identifiedby 'password';

运行之后复制可以正常工作,可以看到

Slave_IO_Running=Yes
Slave_SQL_Running=Yes

创建表测试数据也复制正常,第一次配置mysql复制发帖纪念一下。