citus_rebalance_start() ERROR #7584
Answered
by
diogoaraujodtx
diogoaraujodtx
asked this question in
Q&A
-
Hi guys! I am using a citus cluster with 2 workers. At this point, I want to add a new worker and redistribute the tables among the 3 workers. I used citus_rebalance_start() function but it returns an error (ERROR: connection to the remote node localhost:5432 failed with the following error: fe_sendauth: no password supplied). I have already tried to change pg_hba.conf file and still doesn't work. Can someone help me? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
diogoaraujodtx
Apr 19, 2024
Replies: 1 comment 7 replies
-
what does your pg_hba.conf look like now? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sure, I solve my problem changing line
host all all 127.0.0.1/32 scram-sha-256
tohost all all 127.0.0.1/32 trust
in thepg_ha.conf
file