问题描述:很多时候都会遇见”MySQL: ERROR 1040: Too many connections”的异常情况 问题分析:造成这种情况的一种原因是访问量过高,MySQL服务器抗不住,这个时候就要考虑增加从服务器分散读压力;另一种原因就是MySQL配置文件中max_connections值过小。(MySQL数据库在安装完之后,默认的MySQL数据库,其最大连接数为100)
首先,我们来查看mysql的最大连接数:
登录mysql mysql> show variables like '%max_connections%'; 查看最大连接数
修改最大连接数的两种方法: 1.临时设置 登录mysql:
mysql>set global max_connections=1000;
这种方法在重启mysql后会失效
2.永久设置 修改mysql的配置文件my.cnf 在[mysqld]中添加max_connections = 1000
[mysqld] max_connections = 1000
保存退出后重启mysql
最后: 分享下我的阿里云幸运券(如需要购买阿里云服务的可以领取使用哈):https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=rziak7l4&utm_source=rziak7l4