- マシンにインストール
PostgreSQL
しEC2
、ユーザーのパスワードを変更したいpostgres
- 私がやります
$ sudo -u postgres psql psql (9.1.5) Type "help" for help. postgres=# ALTER USER postgres WITH PASSWORD 'newpasswd'; ALTER ROLE
- 次に、シェルを終了し、新しいパスワードでログインしようとします
$ psql -U postgres -W Password for user postgres: psql: FATAL: Peer authentication failed for user "postgres"
私のPostgreSQL
バージョンは
$ psql --version
psql (PostgreSQL) 9.1.5
contains support for command-line editing
私が間違っていることは何ですか?
ありがとうございました
更新
私は変更を加えました、pg_hba.conf
そしてこれは今それがどのように見えるかです
# 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
その後、私は再起動しました postgres
$ sudo /etc/init.d/postgresql restart
* Restarting PostgreSQL 9.1 database server [ OK ]
もう一度ログインしようとしたが失敗した
$ psql -U postgres -W
Password for user postgres:
psql: FATAL: Peer authentication failed for user "postgres"
おそらく古いパスワードはまだ〜/ .pgpassファイルに保存されています。
@willglynn、更新を確認してください。変更を加えた後も失敗します
—
Daydreamer
pg_hba.conf