排查问题A ResourcePool could not acquire和Connections could not be acquired

在部署项目的时候,通过JDBC的日志看到如下错误信息,现在把解决方案总结一下

错误提示1:A ResourcePool could not acquire a resource from its primary factory or source.

错误提示2:Connections could not be acquired from the underlying database!

遇到上述两个问题,可以从以下几个方面注意排查:
1. JDBC URL和Driver等是否完全正确;
2. 核对用户名、密码(尤其小心空格);
3. 检查数据库实例是否正确(我就是在现场配错了数据库名字导致连不上)
4. 数据库未启动或无权访问(是否有远程访问的权限)
5. 数据库连接池是否够用

你可能感兴趣的:(数据库)