mysql配置文件my.cnf添加max_connections不生效
1、my.cnf设置了max_connections = 20000,但是查看最大连接数是4190
2、问题原因
/lib/systemd/system/mysqld.service
LimitNOFILE=5000
3、解决办法
打开mysql服务文件mysqld.service中的[Service]
vi /lib/systemd/system/mysqld.service
修改 LimitNOFILE=50000
3、重启服务然后查看生效
数据库最大连接数
show variables like '%max_connections%';
使用的最大连接数
show global status like 'Max_used_connections';
使用的线程情况
show status like 'Threads%';
4、显示用户正在运行的线程
show processlist;
5、数据库性能状态
1)QPS量
Com_select:MySQL从上一次启动到当前所执行的查询语句总数量
show global status where variable_name='Com_select';
2)TPS量
Com_commit:MySQL从上一次启动到当前所执行的提交语句总数量
show global status where variable_name='Com_commit';