MySQL5.7主从同步出现以下error:
[ERROR] Slave I/O for channel ‘’: Master command COM_REGISTER_SLAVE failed: Access denied for user ‘sync’@’%’ (using password: YES) (Errno: 1045), Error_code: 1597
MySQL5.7主从同步Slave I/O错误解决方法
解决方法:修改主的授权→GRANT REPLICATION SLAVE ON . TO ‘sync’@’%’ identified by ‘S’;

show grants for ‘sync’@’%’;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-07
  • 2022-12-23
  • 2021-10-31
  • 2022-12-23
  • 2021-04-19
  • 2021-09-28
猜你喜欢
  • 2021-04-16
  • 2022-12-23
  • 2022-12-23
  • 2018-07-13
  • 2022-12-23
  • 2021-08-31
相关资源
相似解决方案