error connecting to master 'mysql22@192.168.132.22:3306' - retry-time: 60 retries: 1 message: Host '192.168.132.33' is not allowed to connect to this MySQL server
这个是因为权限问题吗 求解决方案
这个是由于ip不被允许,你可以设置mysql22用户在所有机子上都可以访问。使用root用户执行如下命令update user set host = '%' where user = 'mysql22';