Ruby 1.9.3 on Mac OS X Lion
Followed several posts on SO about this topic. Neither helped.
Trying to run my first rails and postgreSQL app here.
Following this: http://guides.rubyonrails.org/getting_started.html
When I do:
"rake db:create"
I get:
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"?
Some facts:
Not sure what /tmp/ is it referring to but, if it is the one from root, then:
1) Permissions:
drwxrwxrwx 11 root wheel 374B Jan 4 17:33 tmp
2) Also, I see no file .s.PGSQL.5432.
3) I've tried to force the socket location by adding to database.yml the following:
development:
adapter: postgresql
encoding: unicode
database: testblog_development
pool: 5
username: blog
password:
socket: /var/pgsql_socket # <-- this line
(it stills shows me the same error with the /tmp/ path).
4) When I do, which postgres I get:
/usr/local/bin/postgres
(I've used homebrew installation)
5) When I do: brew info postgres I get:
postgresql: stable 9.2.2 http://www.postgresql.org/ Depends on: readline, ossp-uuid Conflicts with: postgres-xc /usr/local/Cellar/postgresql/9.2.2 (2819 files, 39M) * https://github.com/mxcl/homebrew/commits/master/Library/Formula/postgresql.rb
and other bunch of information.