Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

Here is the fix, more info here:

https://github.com/mxcl/homebrew/issues/5004

First, stop the db, then

  1. cd /var
  2. rm -r pgsql_socket
  3. ln -s /tmp pgsql_socket
  4. chown _postgres:_postgres pgsql_socket
  5. restart, finished
share|improve this answer
2  
Errors back for me and this fix didn't help. I feel like Im bumping around in a dark room in working to understand what is actually going on and a process to apply a fix myself. Would it be possible for you to explain how I could diagnose and fix this issue? – Evolve Feb 8 at 3:46
Worked for me! Thanks! – sgonzalez Mar 2 at 16:42

For the above error you have mentioned, this work out for me..

1) possibly change your default port no specified in postgres.conf file, if you have mentioned other then default port no 5432 while installing.

(OR)

2) Change the port no in postgresql.conf file and restart the DB server

(OR)

3) instead of psql type full command like

"psql -p 5432 -h localhost"

  • server name and the port no
share|improve this answer
1. I think my install would have been as per the defaults. – Evolve Sep 18 '12 at 15:04
2. I could change this, any implications of changing the port? – Evolve Sep 18 '12 at 15:05
3. Added my output from 3 above. – Evolve Sep 18 '12 at 15:07
for me option 3 worked properly.. – sola Sep 20 '12 at 6:46

If you are running Homebrew, uninstall Postgresql end pg gems: $ gem uninstall pg $ brew uninsall postgresql

Download and run the following script to fix permission on /usr/local: https://gist.github.com/rpavlik/768518 $ ruby fix_homebrew.rb

Then install Postgre again and pg gem: $ brew install postgresql
$ initdb /usr/local/var/postgres -E utf8 To have launchd start postgresql at login run: $ ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents Or start manualy.

Install pg gem $ gem install pg

I hope have helped

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.