Browse Source

Update 'README.md'

master
alamin 5 months ago
parent
commit
8d954e8a44
  1. 15
      README.md

15
README.md

@ -1,3 +1,16 @@
# proxmox-cluster-remove
Remove cluster from proxmox
Remove cluster from proxmox
Shut down the other nodes. This step is important to isolate the node from the rest of the cluster and avoid corosync or other services to copy back deleted files on the local node we're gonna act on.
Remove corosync config to ensure the node is no longer part of the cluster:
```bash
rm /etc/pve/corosync.conf
```
Clean up the cluster configuration:
```bash
rm -rf /etc/corosync/*
ls /etc/pve/nodes #show all nodes data in folders, delete the other nodes folders
rm -rf /etc/pve/nodes/<other_node_name> #just to be sure to delete data of other nodes
```
Loading…
Cancel
Save