0

当我尝试:

rake db:migrate

我得到:

rake aborted!
FATAL:  Ident authentication failed for user "postgres"

当我没有问题时

vagrant@lucid32:/sudo su - postgres
postgres@lucid32:/ psql
postgres# (can list databases)

这是我的 pg_hba.conf 文件:

# TYPE  DATABASE    USER        CIDR-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
# Vagrant uses 33.33.33.10 like addresses
host    all         all         33.33.33.0/24         trust
4

1 回答 1

0

假设您尝试重新启动 PostgreSQL,但您仍然收到不是整个 pg_hba.conf 的错误。

一些发行版在表格上方有一个额外的行,将 postgres 设置为 ident。搜索 postgres 字符串并更正显示的行。

于 2013-04-02T11:00:43.123 回答