- Zainstalowałem
PostgreSQL
naEC2
komputerze i teraz chcę zmienić hasło użytkownikapostgres
- ja robię
$ sudo -u postgres psql psql (9.1.5) Type "help" for help. postgres=# ALTER USER postgres WITH PASSWORD 'newpasswd'; ALTER ROLE
- Następnie wychodzę z powłoki i próbuję zalogować się przy użyciu nowego hasła
$ psql -U postgres -W Password for user postgres: psql: FATAL: Peer authentication failed for user "postgres"
Moja PostgreSQL
wersja to
$ psql --version
psql (PostgreSQL) 9.1.5
contains support for command-line editing
Co robię źle?
Dziękuję Ci
AKTUALIZACJA
Wprowadziłem zmiany pg_hba.conf
i tak to teraz wygląda
# Database administrative login by Unix domain socket
local all postgres peer
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
#local all all peer
local all all md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
Następnie ponownie uruchomiłem postgres
$ sudo /etc/init.d/postgresql restart
* Restarting PostgreSQL 9.1 database server [ OK ]
Próbowałem zalogować się ponownie, ale nie powiodło się
$ psql -U postgres -W
Password for user postgres:
psql: FATAL: Peer authentication failed for user "postgres"
pg_hba.conf
jest skonfigurowany w taki sposób, że nie akceptuje uwierzytelniania hasłem.
pg_hba.conf