错误处理:
在从库通过start slave启动主从复制时出现报错
Last_IO_Error: error connecting to master 'slaveuser@10.115.30.212:3306' - retry-time: 60 retries: 1 message: Authentication plugin 'caching_sha2_password' reported error: Authentication requires secure connection.
根据报错提示,发现原因是用于主从复制的slave_user账号在主库中的数据库加密是caching_sha2_password,我们需要修改成mysql_native_password
在主库执行下面的SQL语句:
ALTER USER '你的名字'@'%' IDENTIFIED WITH mysql_native_password BY '你的密码';