How to show and set max_connections in MySQL
To show and set max_connections in MySQL
SHOW VARIABLES like "max_connections";
SHOW session VARIABLES like "max_connections";
SET GLOBAL max_connections = 100;
Comments
Post a Comment