MySQL Max Connections確認と変更
毎回忘れる・・・。
show variables like '%max%';
my.cnf変更
vim /etc/my.cnf
max_connections = 4000
オンラインで変更
set global max_connections = 6000;
ついでに過去の最大使用コネクション
show status like 'max%';
毎回忘れる・・・。
show variables like '%max%';
my.cnf変更
vim /etc/my.cnf
max_connections = 4000
オンラインで変更
set global max_connections = 6000;
ついでに過去の最大使用コネクション
show status like 'max%';