我刚刚用heroku下载的数据库(last.dump)在本地数据库中完成了pg_restore。现在我有一个错误; PG :: ConnectionBad fe_sendauth:未提供密码。 我已经在database.yml中添加了用户名和密码,但是什么也没有。 我必须做什么?
答案 0 :(得分:1)
最后,我解决了在database.yml的常规配置部分中添加“用户名:postgres”和“密码:***”的问题。
default: &default
adapter: postgresql
encoding: unicode
# For details on connection pooling, see Rails configuration guide
# http://guides.rubyonrails.org/configuring.html#database-pooling
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username: postgres
password: ***
不在开发部分;
development:
<<: *default
database: CigBackCount_development
# The specified database role being used to connect to postgres.
# To create additional roles in postgres see `$ createuser --help`.
# When left blank, postgres will use the default role. This is
# the same name as the operating system user that initialized the database.
#username: CigBackCount
# The password associated with the postgres role (username).
#password:
更改后,我重新加载了数据库;
pg_ctl reload