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

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

数据库连接不够用:
首先查看mysql的最大连接数:
show variables like ‘%max_connections%’;
第一种解决方法:
修改MySQL的最大连接数
第二种解决方法:

 <!-- 初始化连接大小 -->
	<property name="initialSize" value="1" />
	<!-- 连接池最大使用连接数量 -->
	<property name="maxActive" value="100" />
	<!-- 连接池最小空闲 -->
	<property name="minIdle" value="10" />

修改连接池最大使用连接数量。修改的比mysql最大连接数小。
然后就会报:

com.alibaba.druid.pool.GetConnectionTimeoutException: wait millis 60001, active 100, maxActive 100, creating 0

此时就可以打开:

 <!-- 打开removeAbandoned功能 -->
	<property name="removeAbandoned" value="true" />
	<!-- 180秒,也就是3分钟 -->
	<property name="removeAbandonedTimeout" value="180" />
	<!-- 关闭abanded连接时输出错误日志 -->
	<property name="logAbandoned" value="true" />

这样就会打印出定位连接泄漏的具体代码位置,一般是在测试阶段别开启。

connection holder is null

可能是MyBatis sql 语句参数没有规定类型。
可能是超时关闭时间太短,调大超时关闭时间。

<property name="removeAbandonedTimeout" value="1800" />

最好还是尽量避免长事务的操作,对执行速度慢的sql进行优化。

以上仅为我个人遇到问题时的解决方式,如有错误或不足,请指正补充。

上一篇:[NEERC2017]Connections


下一篇:mysql占用内存过多