mysql 查找及设置最大链接数解决 Error preloading the connection pool 的问题

错误:Error preloading the connection pool

或者

Data source rejected establishment of connection, message from server: "Too many connections"

原因都是因为连接数不够导致。

 

首先我们登录mysql,回车输入密码:

MySql\bin>mysql -u root -p

查看当前mysql的最大连接数:

mysql> select VARIABLE_VALUE from information_schema.GLOBAL_VARIABLES where VARIABLE_NAME='MAX_CONNECTIONS';

或者

mysql> show variables like '%max_connections%';

设置最大连接数:

mysql> set GLOBAL max_connections = 1000;

注意,此种方式是一次性设置,并非永久生效,当服务重启需要再次设置最大连接数。

 

 

 

 

 

 

 

你可能感兴趣的:(mysql日志)