centos7 mariadb mysql max_connections=214 无法修改的问题

时间:2022-06-25 06:51:21

/etc/my.cnf.d/mariadb-server.cnf

[mysqld]

max_connections = 5000

重启mariadb后 max_connections = 214 。解决问题方法如下:

vi /etc/systemd/system/mariadb.service.d/limits.conf

[Service]

LimitNOFILE=65535

LimitNPROC=65535

保存,退出。

systemctl daemon-reload

systemctl restart mariadb.service


进入 mariadb client 

show variables like '%max_connections%';

返回值  5000.问题解决。