Estou tentando iniciar o banco de dados PostgreSQL, mas está sempre falhando.
Comando estou tentando:
psql -h localhost -U postgres
erro resultante:
psql: FATAL: Ident authentication failed for user "postgres"
.
O conteúdo de /var/lib/pgsql/9.5/data/pg_hba.conf
é o seguinte:
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all peer
# 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 postgres peer
#host replication postgres 127.0.0.1/32 ident
#host replication postgres ::1/128 ident
Eu recentemente fiz a alteração para o arquivo pg_hba.conf
, estou assumindo que não preciso reiniciar o postgres. Segui esta solução mas não ajudei. Alguma sugestão sobre como consertar isso?
Tags postgresql redhat rhel7