gpt4 book ai didi

ruby-on-rails - Rails + Postgres fe_sendauth : no password supplied

转载 作者:行者123 更新时间:2023-11-29 11:08:36 25 4
gpt4 key购买 nike

您好,我正在尝试将 postgresql 连接到我的 Rails 项目。我正在学习测试,但由于密码不正确的 postgresql 错误,我的测试没有运行:

Edmunds-MacBook-Pro:langexchange edmundmai$ rake test:units
rake aborted!
fe_sendauth: no password supplied

我已经看过了,我的 pg_hba.conf 文件原来是这样的:

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local all all trust
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local replication edmundmai

这是我的 rails 项目中的 database.yml 文件

default: &default
adapter: postgresql
encoding: utf8
pool: 5
username: edmundmai
password:

development:
<<: *default
database: project_development

test:
<<: *default
database: project_test

production:
<<: *default
database: project_production

有谁知道我该如何解决这个问题?如果方便的话,我们可以聊天。

最佳答案

请确保您已在生产托管服务器上同时定义 RAILS_ENV 和 RACK_ENV。我遇到了一个类似的问题,除了 rake 之外一切正常,解决方案是将 RACK_ENV=production 添加到我的环境中。 RAILS_ENV 已经设置为生产环境。

export RACK_ENV=production

bundle exec rake db:version

您应该会看到一些输出,例如:

当前版本:20121126151935

解决方案:确保您的 Rails 应用程序可以访问 RAILS_ENV 和 RACK_ENV 环境变量。另外,确保它们的值相同。

关于ruby-on-rails - Rails + Postgres fe_sendauth : no password supplied,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13690162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com