首页 > 数据库 > MySQL > 正文

mysql提示1203错误解决方案

2024-07-24 12:38:12
字体:
来源:转载
供稿:网友

我们的主机经常碰到如mysql提示1203错误下面我来总结一下解决办法.

一、问题

mysql常常报1203错误,超出max_user_connections限制.

二、分析

服务器有长短连接混用,代码如下:

max_connections和max_user_connections值同为2048;

SHOW STATUS LIKE ‘%connect%’查看到当前连接数约1100;

三、解决,代码如下:

  1. # 更改max_user_connections 
  2. SET GLOBAL max_user_connections=0; 
  3. # 查看max_user_connections是否生效 
  4. SELECT @@max_user_connections; 
  5. # 查看当前服务器连接数 
  6. SHOW STATUS LIKE ‘%connect%’; 
  7. # 修改my.cnf 
  8. max_user_connections = 0 
  9. --Vevb.com

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表