1. 查看连接数
show status like 'Threads%'
2. 查看最大连接数
show variables like '%max_connections%';
3. 查看哪些连接
show processlist;
4. 增大最大连接数
set GLOBAL max_connections=300;
show status like 'Threads%'
show variables like '%max_connections%';
show processlist;
set GLOBAL max_connections=300;
本文标题:Mysql - 连接达到最大连接数了怎么办?
本文链接:https://www.haomeiwen.com/subject/ehlwaktx.html
网友评论