Database: "Error: too many connections for database "postgres""
Last edited: 5/5/2026
When getting an error where your connections are overwhelmed Error: too many connections for database "postgres"
Why this occurs#
This issue occurs when datconnlimit gets modified. The default value for datconnlimit is -1.
https://www.postgresql.org/docs/current/catalog-pg-database.html
To check and resolve#
-
Check the value for
datconnlimitusing the query below1select datconnlimit from pg_database where datname='postgres';- If the value you see is 0 or any other value other than -1, proceed with the next step.
-
Update
datconnlimitto DEFAULT1ALTER DATABASE postgres CONNECTION LIMIT DEFAULT;