I'm trying to connect on My pgpool install (3 Nodes)
I'm using a virtual IP adress to connect to my master server. If i reach directly Postgresql, it works:
psql -h *virtual IP* -U postgres -p 5432
but as soon as i try
psql -h *virtual IP* -U postgres -p 5433
Server respond back:
psql: ERROR: authentication failed
DÉTAIL : invalid backend response. Response does not replied with "R"
Note that when i type a wrong password, awnser from the serer is different. I tried:
Setup pool_hba
Checking if md5 password is different in pool_passwd than in Postgresql
Restarting services
Trying to connect from a different User
Tried to set pool_passwd owner to postgres
What am i doing wrong ? My latest tests were good with 2 nodes.
Everything is working fine on postgresql, can connect from everywhere with postgres...
pg_hba:
host all all 0.0.0.0/0 md5
Thanks