SQLSTATE[08004] [1040] 连接过多

发布于 2024-08-20 23:34:51 字数 86 浏览 2 评论 0原文

我收到此错误消息 SQLSTATE[08004] [1040] 连接太多,我正在使用 pdo 适配器。我需要关闭连接吗?我该怎么做?

I'm getting this error messages SQLSTATE[08004] [1040] Too many connections, I'm using pdo adapter. Do I need to close connection? And how I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

半窗疏影 2024-08-27 23:34:51

在您的 my.conf 文件(通常位于 /etc 中)中找到这样一行:

[mysqld]

以及该集合下方的某处

max_connections=500

或您需要的任何数值。

更多信息请参见:MySQL 5.5 参考手册:连接过多< /a>.

In your my.conf file (usually located in /etc) find the line that says:

[mysqld]

And somewhere below that set

max_connections=500

Or whatever numeric value you need.

More information here: MySQL 5.5 Reference Manual: Too many connections.

猫卆 2024-08-27 23:34:51

您需要更改您的 my.cnf 文件。

[mysqld]
set-variable=max_connections=250

将值调高。

You need change your my.cnf file.

[mysqld]
set-variable=max_connections=250

Upper the value.

快乐很简单 2024-08-27 23:34:51

对我来说这个错误的根本原因是硬盘已满。记住这一点,认为这是一种可能性。

The root cause for this error for me was a full hard drive. Keep that in mind as a possibility.

仙气飘飘 2024-08-27 23:34:51

在你的 mysql 中我必须运行这个:

Set Global max_connections=2000

我正在使用 phpMyAdmin 并且我执行了

In your mysql my must to run this:

Set Global max_connections=2000

I'm using phpMyAdmin and I executed

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