Checking max number of MySQL Connection
show variables like 'max_connections';
Let increase the size of connection count 250
SET global max_connections = 250;
Max size of increment size is up to 100,000
Checking max number of MySQL Connection
show variables like 'max_connections';
Let increase the size of connection count 250
SET global max_connections = 250;
Max size of increment size is up to 100,000
Add a comment