本文介绍了SQLSTATE [08004] [1040]连接太多的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到此错误消息SQLSTATE[08004] [1040] Too many connections
,我正在使用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?
推荐答案
在您的my.conf文件(通常位于/etc中)中,找到以下行:
In your my.conf file (usually located in /etc) find the line that says:
[mysqld]
在该设置之下的某处
max_connections=500
或您需要的任何数值.
更多信息,请参见: MySQL 5.5参考手册:太很多连接.
这篇关于SQLSTATE [08004] [1040]连接太多的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!