Akshay Kamble
Akshay Kamble

Reputation: 55

Exception raised when try to run web application using postgres database

when I run start.bat file of tomcat on linux with postgres database. It gives following error after changed in postgres_hba.conf file.

           C3P0PooledConnectionPoolManager[identityToken->2u13c99u1fd86im176rze7|779becbd]-HelperThread-#1--WARN -com.mchange.v2.resourcepool.BasicResourcePool:com.mchange.v2.resourcepool.BasicResourcePool$ScatteredAcquireTask@1de8b573 -- Acquisition Attempt Failed!!! Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception: 

org.postgresql.util.PSQLException: FATAL: remaining connection slots are reserved for non-replication superuser connections

Upvotes: 0

Views: 1212

Answers (1)

Richard Huxton
Richard Huxton

Reputation: 22943

The error message is fairly clear. You have tried to open more database connections than you have configured in postgresql.conf. Even the shortest search of your logs and the manuals would have made this clear.

Upvotes: -1

Related Questions