Re: Installed. Now what?

From: Scott Mead <scottm(at)openscg(dot)com>
To: Marko Kreen <markokr(at)gmail(dot)com>
Cc: Phoenix Kiula <phoenix(dot)kiula(at)gmail(dot)com>, Amitabh Kant <amitabhkant(at)gmail(dot)com>, Tomas Vondra <tv(at)fuzzy(dot)cz>, pgsql-general(at)postgresql(dot)org
Subject: Re: Installed. Now what?
Date: 2011-11-20 11:43:36
Message-ID: CAKq0gvLfe-gtm31evuCwaFNzER81aNJwz-es1TTpnQtGww-cSw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sun, Nov 20, 2011 at 6:21 AM, Marko Kreen <markokr(at)gmail(dot)com> wrote:

> On Sun, Nov 20, 2011 at 8:32 AM, Phoenix Kiula <phoenix(dot)kiula(at)gmail(dot)com>
> wrote:
> > The password I am entering in the terminal is right for sure. I've
> > tried it a few times, checked the caps lock, etc. Also, if the log
> > carries this "FATAL password authentication failed", why does the
> > terminal give the vague error "no working server connection"?
>

ISTM that either your connect string is bad to the database or you already
have too many clients connected to the db. Have you tried:

show max_clients;

select count(1) from pg_stat_activity;

In postgres? Is it possible that there are just too many clients already
connected? If not, then it's probably just your connect string ( in
pgbouncer.ini) not being quite right. You are using 127.0.0.1 for
connecting, is postgres even listening?

netstat -lntp | grep 5432

Good luck.

--Scott

> "no working connection" means that client logged into pgbouncer
> successfully,
> but pgbouncer cannot log into server.
>
> Please look into Postrgres log file for details.
>
> If you see no failures there, you have wrong connect string in
> pgbouncer.ini.
>
> --
> marko
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Phoenix Kiula 2011-11-20 11:52:10 Re: Installed. Now what?
Previous Message Marko Kreen 2011-11-20 11:21:11 Re: Installed. Now what?