ruby-on-rails – Ruby on Rails – 使用md5的Postgresql – Rake中止了! fe_sendauth:没有提供密码

我在Ubuntu上使用Rails设置
Postgresql,我收到错误:Rake Aborted! fe_sendauth:运行rake命令时没有提供密码.

我在database.yml文件中有以下内容:

development:
    adapter: postgresql
    encoding: unicode
    database: test_database
    pool: 5
    username: postgres
    passsword: <password> 

我已经更改了pg_hba.conf文件中的连接方法并重新启动了postgresql服务器,但是发生了同样的错误.

# TYPE  DATABASE        USER            ADDRESS                 METHOD
local   all             all                                     md5
host    all             all             127.0.0.1/32            md5
host    all             all             ::1/128                 md5

我知道我可以改变信任方法并运行rake命令,但我需要使用md5,因为我想使用思考sphinx并且它不支持信任.

我可以通过pgAdmin和控制台中的用户名和密码连接到数据库:psql -U postgres -d test_database.

我错过了什么吗?

[编辑]
结果我无法拼写.我在我的database.yml中将’Passsword’更改为’Password’,现在可以正常工作了……

最佳答案 修复拼写错误,想要在ubuntu的rails中使用用户/密码验证时,必须将postgresql安装目录的pg_hba.conf中的方法访问类型更改为md5

点赞