php报错SQLSTATE[HY000] [1203] User xxx already has more than 'max_user_connections' active connections问题解决

php连接mysql报错信息:

[错误代码]
SQLSTATE[HY000] [1203] User sdm819148356 already has more than 'max_user_connections' active connections

这句提示的意思说你的连接数已经达到最大了,超出了MySql服务器最大单个用户连接数。

查询连接参数配置命令

mysql> show variables like '%connect%';

> mysqladmin -uroot -p variables

解决办法:调整max_user_connections最大连接数配置

使用命令修改

set global max_connections=500;
set global max_user_connections=0;

my.ini 配置文件中修改

vi /etc/my.cnf
max_user_connections=0

其中
max_connections 是指MySQL服务器的最大连接数。即所有用户最大连接数的和。
max_user_connections 是指MySQL中单个用户的最大连接数。值0(默认值)表示 “无限制。”

出处:www.l1mn.com

原文标题:php报错SQLSTATE[HY000] [1203] User xxx already has more than 'max_user_connections' active connections问题解决

原文地址:https://www.l1mn.com/p/95s763.html

本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。

评论

皖ICP备2023023451号

Copyright © L1MN.COM 联系方式:l1mnfw@163.com