我最近使用postgres.app重新安装了postgres,现在我的rails应用程序无法找到数据库。我收到以下错误:
dlopen(/Users/username/.rvm/gems/ruby-2.0.0-p0/gems/pg-0.15.1/lib/pg_ext.bundle, 9): Library not loaded: /Users/username/.rvm/lib/libpq.5.5.dylib
Referenced from: /Users/username/.rvm/gems/ruby-2.0.0-p0/gems/pg-0.15.1/lib/pg_ext.bundle
Reason: image not found - /Users/username/.rvm/gems/ruby-2.0.0-p0/gems/pg-0.15.1/lib/pg_ext.bundle
似乎这个问题源于我跑
的事实brew uninstall postgresql
安装postgres.app之前。我想知道如何告诉我已经存在的rails应用程序找到数据库。感谢
编辑:
这是我的database.yml文件:
development:
adapter: postgresql
encoding: unicode
database: *********
pool: 5
host: localhost
而且,postgres.app正在运行,大象正在闲逛。