mysql view and modify the maximum number of connections

 

Check the maximum number of connections

SHOW VARIABLES LIKE '%max_connections%';

 

 

Modify the maximum number of connections

SET GLOBAL max_connections = 333;

 

 

 

Guess you like

Origin www.cnblogs.com/xiaostudy/p/11546393.html