ERROR 1129 (HY000): Host '10.27.185.72' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
部署环境为linux,mysql部署如下:
mysql:10.116.33.109(5.6版本),10.27.185.72 (5.7)
mycat:10.27.185.72
最近研究部署mycat,运行一段时间后mycat无法启动报无法连接到mysql服务器
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 2013 (HY000): Lost connection to MySQL server at 'reading initial communication packet', system error: 0
其实网上找到很多解决方法,主要是TCP/IP连接问题
1.mysqladmin flush-hosts清除连接
mysqladmin flush-hosts -uroot -prootpwd;
2.修改配置
① 进入Mysql数据库查看max_connect_errors: show variables like '%max_connect_errors%';
② 修改max_connect_errors的数量为1000: set global max_connect_errors = 1000;
③ 查看是否修改成功:show variables like '%max_connect_errors%';
3.重启mysql服务
根据报错信息,在‘10.27.185.72’执行mysqladmin flush-hosts,但是无法生效。试过多次后,发现被误导,应该在'10.116.33.109'上执行清除命令。
mycat 1.6数据库方式的全局序列号配置后服务无法启动。