1 pièce(s) jointe(s)
Probléme de connexion postgres windows
Hello ,
je suis entrain de préparer la migration d'un de mes serveur postgres du 9.6 vers la version 13
j'ai pas le mot de passe postgres
pour cela j'ai éditer le fichier pg-hba.Conf pour autoriser les connexion local sans demander mot de passe , mais malgré ca mon serveur il me demande a
chaque fois le passowrd du compte postgres
Pour info je suis sous windws 10 et postgres9.6
ci joint le conteneur du fichier pg-hba.conf
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| # TYPE DATABASE USER ADDRESS METHOD
# IPv4 local connections:
host test test 10.27.X.x/24 trust
host all all localhost trust
host all all 127.0.0.1/32 md5
hostssl all all 127.0.0.1/32 md5
host all all 10.0.0.0/8 md5
hostssl all all 10.0.0.0/8 md5
# IPv6 local connections:
host all all ::1/128 md5
host all all ::/0 reject
# Allow replication connections from localhost, by a user with the
# replication privilege.
#host replication postgres 127.0.0.1/32 md5
#host replication postgres ::1/128 md5 |
Qui a une idée comment je peux résoudre ce problème
Merci