2014年4月18日11:30:51
Host 'ETCV3' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
连接错误太多,阻止连接。
执行sql语句:放宽允许次数
show variables like '%max_connect_errors%';
#set global max_connect_errors =10000在MySQL配置文件中添加:
max_connect_errors = 10000文件路径:C:\Program Files\MySQL\MySQL Server 5.5\my.ini。

本文讨论了当MySQL服务器接收到的连接请求超过最大允许连接数时,如何通过调整配置文件中的max_connect_errors参数来放宽限制,从而避免连接被阻塞的情况。详细介绍了如何使用SQL语句和修改MySQL配置文件的方法,并提供了具体的步骤和注意事项。
1572

被折叠的 条评论
为什么被折叠?



