Re: Unable to connect Postgres using psql while postgres is alreadyrunning. - Mailing list pgsql-performance

From Laurenz Albe
Subject Re: Unable to connect Postgres using psql while postgres is alreadyrunning.
Date
Msg-id 1515575458.2848.24.camel@cybertec.at
Whole thread Raw
In response to Unable to connect Postgres using psql while postgres is alreadyrunning.  (Dinesh Chandra 12108 <Dinesh.Chandra@cyient.com>)
Responses RE: Re: Unable to connect Postgres using psql while postgres is alreadyrunning.  (Dinesh Chandra 12108 <Dinesh.Chandra@cyient.com>)
List pgsql-performance
Dinesh Chandra 12108 wrote:
> After restarting PostgreSQL Server, I am unable to connect postgres from putty, I am getting error
>  
> psql: could not connect to server: No such file or directory
>     Is the server running locally and accepting
>     connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
>  
> While postgres is already running and also I am able to connect databases from PGAdmin tool but not from command
prompt.

You know that a local connection only works when you are logged in
on the database machine, right?

Is your database listening on port 5432?

Connect as user "postgres" and run the following queries:

   SHOW port;
   SHOW unix_socket_directories;

That will show the port and the directories where UNIX sockets are created.

You can use a socket directory name with the -h option of psql.

Yours,
Laurenz Albe


pgsql-performance by date:

Previous
From: Dinesh Chandra 12108
Date:
Subject: Unable to connect Postgres using psql while postgres is alreadyrunning.
Next
From: Laurenz Albe
Date:
Subject: Re: View preformance oracle to postgresql