Re: BUG #16086: Cannot connect using psql, however I can connect using pgadmin

From: Ashutosh Sharma <ashu(dot)coek88(at)gmail(dot)com>
To: Jeff Janes <jeff(dot)janes(at)gmail(dot)com>
Cc: PG Bug reporting form <noreply(at)postgresql(dot)org>, pgsql-bugs <pgsql-bugs(at)lists(dot)postgresql(dot)org>, mzwai99(at)outlook(dot)com
Subject: Re: BUG #16086: Cannot connect using psql, however I can connect using pgadmin
Date: 2019-10-29 11:51:59
Message-ID: CAE9k0Pm4XY3+gmWTZSKBxDHeefDOp=L3veJp094_VfsB4yrVrw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Tue, Oct 29, 2019 at 4:57 PM Jeff Janes <jeff(dot)janes(at)gmail(dot)com> wrote:
>>
>>
>> LOG: listening on Unix socket "/u01/postgresql/.s.PGSQL.5437"
>> LOG: listening on Unix socket "/tmp/.s.PGSQL.5437"
>
>
> ...
>
>>
>> [root(at)zardplpsmasdev01 ~]# su - postgres -c "psql"
>> psql: error: could not connect to server: could not connect to server: No
>> such file or directory
>> Is the server running locally and accepting
>> connections on Unix domain socket
>> "/var/run/postgresql/.s.PGSQL.5432"?
>
>
> You probably have multiple binaries installed coming from different packages or package managers. psql is searching for the socket in one place, which is not either of the two places the server is listening. You could explicitly tell it where to connect with either `-h /tmp`, or `-h 127.0.0.1`. Or you could find the correct "psql" to run (the one that came with the running server) so that it just knows where to look, possibly uninstalling the wrong psql to minimize future confusion.
>

Alternatively, you could also create a soft link to /tmp/.s.PGSQL.5432

ln -s /tmp/.s.PGSQL.5432 /var/run/postgresql/

Thanks,

--
With Regards,
Ashutosh Sharma
EnterpriseDB:http://www.enterprisedb.com

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Muziwandile Zwane 2019-10-29 11:54:28 Re: BUG #16086: Cannot connect using psql, however I can connect using pgadmin
Previous Message Jeff Janes 2019-10-29 11:27:17 Re: BUG #16086: Cannot connect using psql, however I can connect using pgadmin