LKBEN11031: Howto prevent the error message "Sorry, too many clients..." under Postgresql


Symptom

You are working with postgres sql and get the previous message

Cause

You have reached the limit for database sessions which is 100 by default

Solution

You have reached the limit of database sessions. (default: 100) You need to increase the server's limit on how many concurrent backend processes it can start by changing the "max_connections" value in postgresql.conf and restarting the postgres server daemon.

Please do not "kill -9" the postmaster! This could damage your database. If it is unlikely that you reached this limit than you have to review your code and try to find out why the these processes are started all the time. In this case they might be idle.

Disclaimer:

The information provided in this document is intended for your information only. Lubby makes no claims to the validity of this information. Use of this information is at own risk!

About the Author

Author: Wim Peeters - Keskon GmbH & Co. KG

Wim Peeters is electronics engineer with an additional master in IT and over 30 years of experience, including time spent in support, development, consulting, training and database administration. Wim has worked with SQL Server since version 6.5. He has developed in C/C++, Java and C# on Windows and Linux. He writes knowledge base articles to solve IT problems and publishes them on the Lubby Knowledge Platform.