增加mysql的最大并发连接数

select @@max_connections;

set  @@global.max_connections=1000;

select @@max_user_connections;

set  @@global.max_user_connections=1000;


你可能感兴趣的:(增加mysql的最大并发连接数)