mySQL Error 1040: Too Many Connection
To see how many connections are configured for your DB to use:
select @@max_connections;
To change it:
set global max_connections = 200;
To see how many are connected at the current time:
show processlist;
vi /etc/my.cnf
[mysqld]
max_connections = 500
[mysqld]
max_connections = 500
posted on 2020-03-10 20:20 paulwong 閱讀(300) 評論(0) 編輯 收藏 所屬分類: MYSQL