Commit b243ef02 authored by Richard Clamp's avatar Richard Clamp Committed by Marin Jankovski

Add example of finding the repmgr node id

parent 1c402319
...@@ -554,7 +554,25 @@ after it has been restored to service. ...@@ -554,7 +554,25 @@ after it has been restored to service.
gitlab-ctl repmgr standby unregister --node=X gitlab-ctl repmgr standby unregister --node=X
``` ```
where X is be the value of node in `repmgr.conf` on the old server. where X is the value of node in `repmgr.conf` on the old server.
To find this, you can use:
```sh
awk -F = '$1 == "node" { print $2 }' /var/opt/gitlab/postgresql/repmgr.conf
```
It will output something like:
```
959789412
```
Then you will use this id to unregister the node:
```sh
gitlab-ctl repmgr standby unregister --node=959789412
```
- To add the node as a standby server: - To add the node as a standby server:
......
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