2020-06-03 17:08:23 -04:00
---
stage: Enablement
group: Geo
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
type: howto
---
2019-07-08 04:50:38 -04:00
# Removing secondary Geo nodes **(PREMIUM ONLY)**
2019-05-05 12:08:21 -04:00
**Secondary** nodes can be removed from the Geo cluster using the Geo admin page of the **primary** node. To remove a **secondary** node:
2020-07-29 20:09:53 -04:00
1. Navigate to **Admin Area > Geo** (`/admin/geo/nodes`).
2019-05-05 12:08:21 -04:00
1. Click the **Remove** button for the **secondary** node you want to remove.
1. Confirm by clicking **Remove** when the prompt appears.
Once removed from the Geo admin page, you must stop and uninstall the **secondary** node:
1. On the **secondary** node, stop GitLab:
2020-01-30 10:09:15 -05:00
```shell
2019-07-02 21:37:27 -04:00
sudo gitlab-ctl stop
```
2019-05-05 12:08:21 -04:00
1. On the **secondary** node, uninstall GitLab:
2020-01-30 10:09:15 -05:00
```shell
2019-07-02 21:37:27 -04:00
# Stop gitlab and remove its supervision process
sudo gitlab-ctl uninstall
2019-07-12 04:15:38 -04:00
2019-07-02 21:37:27 -04:00
# Debian/Ubuntu
sudo dpkg --remove gitlab-ee
2019-07-12 04:15:38 -04:00
2019-07-02 21:37:27 -04:00
# Redhat/Centos
sudo rpm --erase gitlab-ee
```
2019-05-05 12:08:21 -04:00
Once GitLab has been uninstalled from the **secondary** node, the replication slot must be dropped from the **primary** node's database as follows:
1. On the **primary** node, start a PostgreSQL console session:
2020-01-30 10:09:15 -05:00
```shell
2019-07-12 04:15:38 -04:00
sudo gitlab-psql
2019-07-02 21:37:27 -04:00
```
2019-07-12 04:15:38 -04:00
2019-07-02 21:37:27 -04:00
NOTE: **Note:**
Using `gitlab-rails dbconsole` will not work, because managing replication slots requires superuser permissions.
2019-05-05 12:08:21 -04:00
1. Find the name of the relevant replication slot. This is the slot that is specified with `--slot-name` when running the replicate command: `gitlab-ctl replicate-geo-database` .
2019-07-02 21:37:27 -04:00
```sql
SELECT * FROM pg_replication_slots;
```
2019-07-12 04:15:38 -04:00
2019-05-05 12:08:21 -04:00
1. Remove the replication slot for the **secondary** node:
2019-07-02 21:37:27 -04:00
```sql
SELECT pg_drop_replication_slot('< name_of_slot > ');
2019-07-12 04:15:38 -04:00
```