MySQL / phpMyadmin:“许多连接错误”

发布于 2024-08-23 22:47:13 字数 168 浏览 6 评论 0原文

我的应用程序不再连接到其数据库,并且 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酒几许 2024-08-30 22:47:13
  1. 使用管理权限打开命令提示符(或 Linux 中的 shell)

  2. 使用 mysqladmin 刷新 MySQL 中的所有主机:

    mysqladminlush-hosts -u root -p

  3. 打开 my.cnf (Linux) 或 my.ini (Windows) 并将 max_connect_errors 变量更改为较大的数字。我用过:

    ma​​x_connect_errors= 1000000

  4. 重新启动 MySQL 服务器

  1. Open a command prompt (or shell in Linux) with administrative privilleges

  2. Flush all hosts in MySQL using mysqladmin:

    mysqladmin flush-hosts -u root -p

  3. Open my.cnf (Linux) or my.ini (Windows) and change max_connect_errors variable to a large number. I used:

    max_connect_errors= 1000000

  4. Restart MySQL server

旧瑾黎汐 2024-08-30 22:47:13

来自手册: http://dev.mysql.com/ doc/refman/4.1/en/blocked-host.html

中断连接数
允许的请求由以下因素决定
max_connect_errors系统的值
多变的。在 max_connect_errors 之后
失败的请求,mysqld 假设
有问题(例如,
有人试图闯入),并且
阻止主机进一步
连接,直到执行
mysqladmin 刷新主机命令或
发出 FLUSH HOSTS 语句。看
第 5.1.3 节 “服务器系统
变量”。

您可能在连接数据库时遇到网络问题。

From the manual: http://dev.mysql.com/doc/refman/4.1/en/blocked-host.html

The number of interrupted connect
requests allowed is determined by the
value of the max_connect_errors system
variable. After max_connect_errors
failed requests, mysqld assumes that
something is wrong (for example, that
someone is trying to break in), and
blocks the host from further
connections until you execute a
mysqladmin flush-hosts command or
issue a FLUSH HOSTS statement. See
Section 5.1.3, “Server System
Variables”.

You could be having network problems connecting to your database.

海夕 2024-08-30 22:47:13

我们在使用 monit 监控数据库服务器时遇到了这个问题。如果您的配置采用以下形式,Monit 将导致连接错误:

if failed port 3306 with timeout 15 seconds 2 times within 3 cycles then alert

而不是

if failed port 3306 protocol mysql with timeout 15 seconds 2 times within 3 cycles then alert

缺少“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:

if failed port 3306 with timeout 15 seconds 2 times within 3 cycles then alert

Rather than

if failed port 3306 protocol mysql with timeout 15 seconds 2 times within 3 cycles then alert

The lack of 'protocol mysql' causes the connection error count to notch up.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文