Bonjour,

J'ai installé et configuré pgpool-II, mais j'ai l'erreur suivante:

[postgres@mfle1356p log]$ psql -h vippgpoolpoc -p 9999 -U postgres
psql: ERROR: SCRAM authentication failed
DETAIL: unable to decrypt password from pool_passwd
HINT: verify the valid pool_key exists
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
[postgres@mfle1356p pgpool-II]$ cat pool_hba.conf
# "local" is for Unix domain socket connections only
local   all         all                               trust
# IPv4 local connections:
host    all         all         127.0.0.1/32          trust
host    all         all         ::1/128               trust
host    all         all           10.66.13.0/0          scram-sha-256
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
[postgres@mfle1356p pgpool-II]$ cat pool_passwd
pgpool:AESUlhhzCC3fyJ6JPRfMQd4bg==
postgres:AESmg984I6Thqc/kTSF83nUDg==
pgpool.conf

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
# - Authentication -
 
enable_pool_hba = on
pool_passwd = 'pool_passwd'