解决centos7 mariadb max_connections=214无法修改问题

vi /etc/my.cnf
[mysqld]
max_connections = 5000
重启mariadb之后连接数为214

解决方案如下:

vi /usr/lib/systemd/system/mariadb.service
在[Service]标签下设置如下两个参数
LimitNOFILE=65535
LimitNPROC=65535

保存,退出。
systemctl daemon-reload
systemctl restart mariadb.service

你可能感兴趣的:(解决centos7 mariadb max_connections=214无法修改问题)