From 653e2434e73d117a73d3531a13d4954676e683d2 Mon Sep 17 00:00:00 2001 From: Flavio Mayrink Date: Sun, 2 Feb 2025 17:59:14 +0000 Subject: [PATCH] Replacing ports 8080 with 8008 when doing the curl -k to verify the patroni endpoint --- _posts/2024-12-07-postgresql-high-availability.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/_posts/2024-12-07-postgresql-high-availability.md b/_posts/2024-12-07-postgresql-high-availability.md index ea6d197295..7b94b7119e 100644 --- a/_posts/2024-12-07-postgresql-high-availability.md +++ b/_posts/2024-12-07-postgresql-high-availability.md @@ -979,9 +979,9 @@ However we don't always know who the leader is so we can't use an IP We can test the patroni endpoint to see who is leader ```bash -curl -k https://192.168.60.103:8080/primary -curl -k https://192.168.60.104:8080/primary -curl -k https://192.168.60.105:8080/primary +curl -k https://192.168.60.103:8008/primary +curl -k https://192.168.60.104:8008/primary +curl -k https://192.168.60.105:8008/primary ``` ### Editing your pg_hba after bootstrapping