我在Cloud9 Ubuntu模板上安装了postgres。当我尝试执行" rake db:migrate"时,我收到了错误。
rake aborted:PG::ConnectionBad: fe_sendauth: no password supplied
我的database.yml文件中的相关设置
default: &default
adapter: postgresql
encoding: unicode
pool: 5
username: <%= ENV['USERNAME'] %>
password: <%= ENV['PASSWORD'] %>
host: <%= ENV['IP'] %>
development:
<<: *default
database: app_development
答案 0 :(得分:1)
看起来像Cloud9问题。我引用了https://community.c9.io/t/fe-sendauth-no-password-supplied-error-after-setting-up-postgrsql-on-rails/2206/2
在c9终端上运行以下命令。
Base._data
它对我有用。