MySQL / phpMyadmin:“许多连接错误”
我的应用程序不再连接到其数据库,并且 phpmyadmin 说 #1129 - 由于许多连接错误,主机“xxx.xx.xx.xx”被阻止;使用 'mysqladminlush-hosts' 解除阻止
mysql_error() 打印出相同的消息。难道是因为连接太多了?
这是什么原因造成的?
My app no longer connects to its DB and phpmyadmin says #1129 - Host 'xxx.xx.xx.xx' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts'
mysql_error() prints out the same message. Could this be because of too many connections?
What causes this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用管理权限打开命令提示符(或 Linux 中的 shell)
使用 mysqladmin 刷新 MySQL 中的所有主机:
mysqladminlush-hosts -u root -p
打开 my.cnf (Linux) 或 my.ini (Windows) 并将 max_connect_errors 变量更改为较大的数字。我用过:
max_connect_errors= 1000000
重新启动 MySQL 服务器
Open a command prompt (or shell in Linux) with administrative privilleges
Flush all hosts in MySQL using mysqladmin:
mysqladmin flush-hosts -u root -p
Open my.cnf (Linux) or my.ini (Windows) and change max_connect_errors variable to a large number. I used:
max_connect_errors= 1000000
Restart MySQL server
来自手册: http://dev.mysql.com/ doc/refman/4.1/en/blocked-host.html
您可能在连接数据库时遇到网络问题。
From the manual: http://dev.mysql.com/doc/refman/4.1/en/blocked-host.html
You could be having network problems connecting to your database.
我们在使用 monit 监控数据库服务器时遇到了这个问题。如果您的配置采用以下形式,Monit 将导致连接错误:
而不是
缺少“protocol mysql”导致连接错误计数增加。
We had this problem when using monit to monitor our DB server. Monit will cause connection errors if your config is of the form:
Rather than
The lack of 'protocol mysql' causes the connection error count to notch up.