I've been trying to set up a VPS mainly for testing purposes, but I've lost so many hours now on this seemingly stupid issue that the only thing I can to is turn to the community's shared knowledge to try to solve it.
Scenario: Fresh VPS Ubuntu (Ubunut now) 12.04 install. Updated and upgraded.
First thing I do is to create a new user with sudo capabilities, login with such user and start working. I input the commands:
sudo apt-get install postgresql
sudo su - postgres
psql -d postgres -U postgres
and now I get
psql: 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"?
I am not a Linux wizard, but I've got a good experience in setting up a Rails/PG environment, I did it so many times on local machines, and a few times on VPS machines too. Now, I just can't get what the hell is going on.
Any suggestion?
pg_wrapperand I'm pretty sure it creates a PostgreSQL database when Pg is installed. Are there anypostgresprocesses running? What's in the PostgreSQL log files in/var/log/postgresql, if anything? BTW, yoursudo su - postgresis totally unnecessary, you can justsudo -u postgres psql– Craig Ringer Oct 29 '12 at 10:07ps -e | grep postgres(b) Is it running on port 5432? -netstat -nlp | grep 5432(c) What UNIX socket is Postgres listening on? -netstat -lp --protocol=unix | grep postgres(d) Can you connect over localhost? -psql -U postgres -h localhost[ while logged in to the shell as the postgres user ]. – Ngure Nyaga Oct 29 '12 at 10:11