Skip to content

Replacing ports 8080 with 8008 when doing the curl -k to verify the p… #339

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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