繁体   English   中英

pg_restore后,报错; PG::ConnectionBad fe_sendauth:未提供密码

[英]After pg_restore, an error; PG::ConnectionBad fe_sendauth: no password supplied

我刚刚使用heroku下载的数据库(last.dump)在本地数据库中完成了pg_restore。 现在我有一个错误; PG::ConnectionBad fe_sendauth:未提供密码。 我在 database.yml 中添加了用户名和密码,但没有。 我必须做什么?

最后我解决了在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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM