我在IBM BlueMix中面临配置问题。我有2个项目正在运行,这些项目已经连接:
在TomCat中部署了一个应用程序(LifeRay),它似乎过度使用了ClearDB提供的连接池(4个连接):
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: User 'xxxxx' has exceeded the 'max_user_connections' resource (current value: 4)
在我的应用程序中,我指定了一个限制(参见最后一行):
liferay.home=/home/vcap/app/.java-buildpack/tomcat/webapps/ROOT/WEB-INF
jdbc.default.driverClassName=com.mysql.jdbc.Driver
jdbc.default.url=jdbc:mysql://us-cdbr-iron-east-04.cleardb.net/xxxxx?user=xxxxx&password=xxxxx
jdbc.default.username=xxxxx
jdbc.default.password=xxxxx
jdbc.default.maxPoolSize=4
连接成功建立;但是我最终在提到的异常中导致Droplet崩溃;这也阻止我检查TomCat的ROOT.xml:
App instance exited with guid c2ec8b5e-1b11-42f0-82e8-b58960598be6 payload: {"cc_partition"=>"default", "droplet"=>"c2ec8b5e-1b11-42f0-82e8-b58960598be6", "version"=>"184afb88-2499-49cd-9ed1-f0cb5d042607", "instance"=>"88d43ee42795422c97a6add2b453602a", "index"=>0, "reason"=>"CRASHED", "exit_status"=>148, "exit_description"=>"failed to accept connections within health check timeout", "crash_timestamp"=>1469615393}
由于似乎没有使用配置文件,我认为CloudCoundy错误配置了TomCat。知道如何配置TomCat来限制连接池吗?
这是我自己的游乐场(PoC);表现无关紧要; BlueMix似乎没有任何其他可用于测试的免费数据库,这提供了更多的连接。
非常感谢任何帮助!
答案 0 :(得分:0)
可以通过portal-ext.properties配置连接池:
# Connection Pool (Default: C3PO)
jdbc.default.liferay.pool.provider=c3po
jdbc.default.acquireIncrement=5
jdbc.default.acquireRetryAttempts=3
jdbc.default.acquireRetryDelay=1000
jdbc.default.connectionCustomizerClassName=com.liferay.portal.dao.jdbc.pool.c3p0.PortalConnectionCustomizer
jdbc.default.idleConnectionTestPeriod=3600
jdbc.default.maxIdleTime=3600
jdbc.default.maxPoolSize=20
jdbc.default.minPoolSize=5
jdbc.default.initialPoolSize=10
jdbc.default.numHelperThreads=10
#jdbc.default.transactionIsolation=1