Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions _posts/2024-12-07-postgresql-high-availability.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading