Centos7.3下面mysql的max_connections不生效的问题。

时间:2022-10-02 21:55:36

网上很多文章都没说清楚, 参考了一下2个文章。  顺带总结一下!

http://blog.csdn.net/junqing124/article/details/50669063


http://blog.csdn.net/duyuanhai/article/details/41284415


【1】环境: 阿里云ECS, 安装mysql5.6.   用  show variables like '%max_connections%';    发现只有151个连接数


【2】注意:一定要放在  [mysqld]  下面第一个配置。。   

vi /usr/my.cnf 回车;打开文件后按“i”键进入编辑状态;

在“[mysqld]”下面添加“max_connections=1000”,按Esc键进入命令模式,输入“:wq”回车(保存并退出)。


重启服务器。   使用  show variables like '%max_connections%';    发现只有214个连接数


【3】

原文是:http://*.com/questions/32760202/buffered-warning-changed-limits-max-connections-214-requested-800

总结:

排除是my.cnf路径不对的问题,可能是系统限制了文件打开数量,主要是改这2个地方:


在 /etc/security/limits.conf  底部增加2行【阿里云ecs下,不加也可以,因为他们的centos7.3自动加了

mysql hard nofile 65535
mysql soft nofile
65535

在 /usr/lib/systemd/system/mysqld.service  底部增加1行

LimitNOFILE=65535


重启服务器。   使用  show variables like '%max_connections%';    发现有1000个连接数!!  成功