调整mysql数据库最大连接数
【查看mysql最大链接数】
mariadb [(none)]> show variables like 'max_connections';
+-----------------+-------+ | variable_name | value | +-----------------+-------+ | max_connections | 151 | +-----------------+-------+ |
【配置/etc/my.cnf】
[mysqld]新添加一行:
max_connections=1000 |
重启mariadb服务,再次查看最大连接数,发现是214,而不是我们设置的1000。
+-----------------+-------+ | variable_name | value | +-----------------+-------+ | max_connections | 214 | +-----------------+-------+ |
这是由于mariadb有默认打开文件数限制。
可以通过配置 /usr/lib/systemd/system/mariadb.service 来调大打开文件数目。
【配置 mariadb.service】
[service]新添加两行:
limitnofile=10000 limitnproc=10000 |
【重新加载系统服务并重启】
systemctl --system daemon-reload systemctl restart mariadb.service |
+-----------------+-------+ | variable_name | value | +-----------------+-------+ | max_connections | 1000 | +-----------------+-------+ |
然后我们发现最大连接数已经发生了变化。