- To check the number of existing connections for MySQL:
Run the following query in MySQL Work Bench:
select count(host) from information_schema.processlist;
or
show status where variable_name = 'threads_connected';
- Check the max connection allowed by MySQL:
Run the following query in MySQL Work Bench:
select @@max_connections
Comments
0 comments
Please sign in to leave a comment.