我知道在SO上有这么多的这样的任务,但是我已经看过他们了,我仍然无法应对我的问题.
我正在使用ansible做所有的事情,所以它是相当自动化,但无论如何,这里是我的文件:
的pg_hba.conf
local all all trust host all all 127.0.0.1/32 md5 host all all ::1/128 md5 host all all 10.11.12.0/24 md5
database.yml的
production: database: my_db adapter: postgresql host: localhost username: deploy encoding: unicode min_messages: WARNING template: template0
在我的系统创建中,我有一个部署用户(并且没有设置密码的postgres用户).而现在,虽然我完全能够使用psql -d my_db(在服务器上)从bash登录postgres,但我无法使用我的rails应用程序连接到数据库.运行rake db:migrateMigration给我
PG::ConnectionBad: fe_sendauth: no password supplied
我在吃蜂蜜时非常可怕,而且我从昨天上午的前一天与这个问题进行了斗争,而且还在这里,如果有人能够帮助我,我将不胜感激.
psql正在使用本地套接字连接,rails在TCP / IP上使用localhost.本地信任,本地主机需要密码(使用md5).您可以为rails用户设置一个pgpass文件:
http://www.postgresql.org/docs/current/static/libpq-pgpass.html
原文链接:https://www.f2er.com/postgresql/192702.html