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

I get this error every this I run my Rails app (It cannot connect to my local Postgresql)

/Users/leonardo/.rvm/gems/ruby-1.9.3-p362/gems/activerecord-3.2.11/lib/
active_record/connection_adapters/postgresql_adapter.rb:1208:in `initialize': 
could not connect to server: No such file or directory (PG::Error)
   Is the server running locally and accepting
connections on Unix domain socket "/var/pgsql_socket/.s.PGSQL.5432"?

I'm using Postgres.app that it's correctly running.

If I run

$ psql

I can login properly to Postgresql console.

$ which psql
 /Applications/Postgres.app/Contents/MacOS/bin/psql

Gemfile

source 'https://rubygems.org'
ruby "1.9.3"

gem 'rails', '3.2.11'
gem "pg"

database.yml

development:
  adapter: postgresql
  encoding: unicode
  username: leonardo
  password: 
  database: zapping
  port: 5432  

Postgresql (Console)

$ psql
leonardo=# \l

enter image description here

share|improve this question
4  
can you try add host: localhost to your database.yml ? (based on that answer : stackoverflow.com/a/10793186/919641) – pjam Jan 8 at 22:32
Shit! Now it works! It shouldn't be assumed as a convention?! Thanks! – user1028100 Jan 8 at 22:33
That's good news :) – pjam Jan 8 at 22:34
If you add it in "answers" I will marked as accepted – user1028100 Jan 8 at 22:38
Thank you, doing it now :) – pjam Jan 8 at 22:39

3 Answers

up vote 13 down vote accepted

Try adding host: localhost to your database.yml. (Based on: http://stackoverflow.com/a/10793186/919641)

share|improve this answer

Your Pg gem was compiled against the PostgreSQL libpq pre-installed in Mac OS X and you're using the psql that you installed in a newer version, or vice versa.

This can be worked around by specifying a TCP/IP connection, by adding localhost to database.yml, but it's better to compile the Pg gem against the libpq for the server you're actually running. To do that, you should be able to set the PATH environment variable to the folder with the correct pg_config in it before compiling. In your case that'll be somewhere within Postgres.app.

Thanks, Apple, for making this such a mess for everybody.

share|improve this answer
Craig, can you please elaborate this one? Where and which env. variable should I set exactly? – Rizon Jan 19 at 23:23

you should add host: localhost to your db config...

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.