Miałem podobny problem na moim nowym MacBooku Pro z systemem Mountain Lion. Pobrałem PostgresApp a kiedy odpaliłem szyny otrzymałem następujący błąd:
`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"?
Aby to naprawić, musiałem jawnie zdefiniować hosta i port w moim database.yml
plik w ten sposób:
development:
adapter: postgresql
encoding: unicode
database: my_app_development
pool: 5
username: tony
password: stark
host: localhost
port: 5432