Hi folks!
I have a small homelab and I had 4 PVE nodes:
When I login to GUI on
When I run:
on each node.
Looks like I should have look up the documentation first and remove the node while it was still active :/
How can I fix that and get rid of
Thanks!
I have a small homelab and I had 4 PVE nodes:
pve0
, pve1
, pve2
and pve3
in 1 datacenter/cluster. I was looking to turn pve3
into PBS, so I simply disconnected the hardware and installed PBS there.When I login to GUI on
pve0
/pve1
/pve2
I still can see pve3
and I'd like to get rid of it.When I run:
Code:
root@pve0:~# pvecm nodes
Membership information
----------------------
Nodeid Votes Name
1 1 pve1
3 1 pve2
4 1 pve0 (local)
pve3
is not visible, but I can still see it in corosync.conf
:
Code:
root@pve0:~# cat /etc/pve/corosync.conf
logging {
debug: off
to_syslog: yes
}
nodelist {
node {
name: pve0
nodeid: 4
quorum_votes: 1
ring0_addr: 192.168.0.190
}
node {
name: pve1
nodeid: 1
quorum_votes: 1
ring0_addr: 192.168.0.191
}
node {
name: pve2
nodeid: 3
quorum_votes: 1
ring0_addr: 192.168.0.192
}
node {
name: pve3
nodeid: 2
quorum_votes: 1
ring0_addr: 192.168.0.193
}
}
Looks like I should have look up the documentation first and remove the node while it was still active :/
How can I fix that and get rid of
pve3
references from all the other nodes?Thanks!