mysql(mariadb)报错超过连接数: ERROR 1040 (HY000): Too many connections

在此记录下解决过程

1、vi /etc/my.cnf 

[Service]新添加两行如下参数:

wait_timeout = 600

interactive_timeout = 600

max_connections=4096

2、vi  usr/lib/systemd/system/mariadb.service

[Service]新添加两行如下参数:

LimitNOFILE=10000

LimitNPROC=10000

3、重新加载系统服务,并重启mariadb服务

systemctl --system daemon-reload  

systemctl restart mariadb.service

  

你可能感兴趣的:(linux,环境配置/程序编译)