1
Exiting
/Users/judyngai/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record    /connection_adapters/postgresql_adapter.rb:1216: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 "/tmp/.s.PGSQL.5432"?

我阅读了一些帖子,有人建议添加

主机:本地主机

到 database.yml 文件

然后我得到了这个新错误

Exiting
/Users/judyngai/.rvm/gems/ruby-1.9.3-p392/gems/activerecord-3.2.13/lib/active_record        /connection_adapters/postgresql_adapter.rb:1216:in `initialize':      could not connect to server: Connection refused (PG::Error)
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" (127.0.0.1) and accepting
TCP/IP connections on port 5432?

有人能指出我正确的方向吗?

我认为我没有提供足够的信息

当我做

psql --version
psql (PostgreSQL) 9.2.4

which psql 
/usr/local/bin/psql

我的机器上确实安装了 psql

这是我的 database.yml 文件

test:
  adapter: postgresql
  encoding: unicode
  database: pinny_test
  pool: 5
  username: judyngai
  password:
  host: localhost

development:
  adapter: postgresql
  encoding: unicode
  database: pinny_development
  pool: 5
  username: judyngai
  password:
  host: localhost

我取消了生产部分的注释。

4

2 回答 2

1

您似乎对 PostgreSQL 配置错误。您需要更改中的配置pg_hba.conf。你可以看到这个答案https://stackoverflow.com/a/7696398/1405852

于 2013-05-14T19:18:54.067 回答
0

我假设您的database.yml文件看起来像这样:

development:
  adapter: postgresql
  database: app_development
  host: localhost

test:
  adapter: postgresql
  database: app_test
  host: localhost

production:
  adapter: postgresql
  database: app_production
  host: localhost

您需要安装并运行Postgres 应用程序。这是文档

如果您还有问题,请告诉我。

于 2013-05-14T19:16:12.057 回答