Commit df163a0b authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'docs/geo-update-pg-hba-tracking' into 'master'

Docs - Update pg_hba example for tracking Geo database

See merge request gitlab-org/gitlab!29651
parents c4852d78 edeb9463
...@@ -159,6 +159,19 @@ outbound rules do not apply to RDS PostgreSQL databases. Therefore, you need to ...@@ -159,6 +159,19 @@ outbound rules do not apply to RDS PostgreSQL databases. Therefore, you need to
rule to the read-replica's security group allowing any TCP traffic from rule to the read-replica's security group allowing any TCP traffic from
the tracking database on port 5432. the tracking database on port 5432.
1. Ensure that your secondary node can communicate with your tracking database by
manually changing the `pg_hba.conf` that is associated with your tracking database.
Remember to restart PostgreSQL afterwards for the changes to take effect:
```plaintext
##
## Geo Tracking Database Role
## - pg_hba.conf
##
host all all <trusted tracking IP>/32 md5
host all all <trusted secondary IP>/32 md5
```
1. SSH into a GitLab **secondary** server and login as root: 1. SSH into a GitLab **secondary** server and login as root:
```shell ```shell
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment