Re: [GENERAL] too many clients?

2000-10-18 Thread Peter Eisentraut
chris markiewicz writes: > Sorry, too many clients already > > hello. i am getting the above message when i try to connect. where do i > find documentation about connection management? man postmaster, -N option > i want to be able to see all current connections and kill some of > them. how

RE: [GENERAL] too many clients

2001-06-08 Thread Nicolas Huillard
Look at the -N (and -B) options of the postmaster process (for 6.5.3, maybe different for 7.x) NH > -Message d'origine- > De: jochen mader [SMTP:[EMAIL PROTECTED]] > Date: vendredi 8 juin 2001 13:53 > À:[EMAIL PROTECTED] > Objet:[GENERAL] too many clients > > First: Thank

RE: [GENERAL] too many clients

2001-06-08 Thread Christian Bucanac
Hi! Use the -N flag to set number of client connections when starting postmaster. See manual page for postmaster. /Buckis -Original Message- From: jochen mader [mailto:[EMAIL PROTECTED]] Sent: den 8 juni 2001 13:53 To: [EMAIL PROTECTED] Subject: [GENERAL] too many clients First: Than

Re: [GENERAL] too many clients

2001-06-08 Thread jochen mader
On Friday 08 June 2001 16:45, you wrote: > Look at the -N (and -B) options of the postmaster process (for 6.5.3, maybe > different for 7.x) Thanks a lot, overlooked this one :-) ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ? ht

Re: [GENERAL] Too many clients connected

2005-10-10 Thread Moises Alberto Lindo Gutarra
first of all, your clients are closing connections?? yo should use a pool connection. 2005/10/10, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > > > > > Hi All, > I am sorry if this was already discussed. I am new to the world of > postgressql and was experincing a problem for which I need help of an >

Re: [GENERAL] Too many clients connected

2005-10-10 Thread Csaba Nagy
Venki, Postgres is using a thread per _realized_ connection, and reserves some memory per _configured_ connection. So setting the configured connection count too high is not free even if normally you won't have that many connections actually open. And of course at peak load the number of connectio

Re: [GENERAL] Too many clients connected

2005-10-10 Thread Scott Marlowe
On Mon, 2005-10-10 at 10:59, [EMAIL PROTECTED] wrote: > > > Hi All, > I am sorry if this was already discussed. I am new to the world of > postgressql and was experincing a problem for which I need help of an > expert in this lists. > We have devloped a site(asp.net 1.1) for which we have used po

Re: [GENERAL] too many clients - Error message

2000-04-22 Thread Charles Tassell
The maximum number of backends that the PostGres postmaster will start is 32. If you want more, you have to specify the maximum on the command line with the -N option. IE, you can start postgres like this to allow internet connections, have it fork into the background, and allow 100 simultaneo