我最近使用 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 正在运行,大象正在闲逛。