Like some others I am getting this error when I run rake db:migrate in my project or even try most database tasks for my Rails 3.2 applications.
PGError (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"?
I installed Postgres with Homebrew a long time ago and following an attempted installation of mongoDb recently my postgres install has never been the same. Im running OSX Snow Leopard.
Please help me resolve what's wrong as well as better understand how postgres is and should be setup on my mac.
So far (I think) this tells me that postgres is not running?
ps -aef|grep postgres (ruby-1.9.2-p320@jct-ana) (develop) ✗
501 17604 11329 0 0:00.00 ttys001 0:00.00 grep postgres
But this tells me that postgres is running?
✪ launchctl load -w /usr/local/Cellar/postgresql/9.1.4/homebrew.mxcl.postgresql.plist (ruby-1.9.2-p136)
homebrew.mxcl.postgresql: Already loaded
How do I fix this, what am I not seeing?
Ps. ~/Library/LaunchAgents includes two postgres .plist files, not sure if that's relevant.
org.postgresql.postgres.plist
homebrew.mxcl.postgresql.plist
Edit: Tried the following and got as below.
$ psql -p 5432 -h localhost
psql: could not connect to server: Connection refused
Is the server running on host "localhost" (127.0.0.1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (::1) and accepting
TCP/IP connections on port 5432?
could not connect to server: Connection refused
Is the server running on host "localhost" (fe80::1) and accepting
TCP/IP connections on port 5432?
[Edit 1:] I've read since that this is occuring because OSX installs its own version of Postgres and Homebrew installs a different version in a different place and the postgres commands are looking in the /tmp/ directory. You'll need to search more on Stackoverflow but basically you simlink postgres so that anything looking in that tmp path actually finds the real path, if that makes sense.