Bootstrap

PVE集群移除故障节点退出集群

1、在待隔离节点上停止 pve-cluster 服务

systemctl stop pve-cluster.service
systemctl stop corosync.service

2、执行将待隔离节点的集群文件系统设置为本地模式的命令

pmxcfs  -l

3、执行删除 corosync 配置文件的命令

rm /etc/pve/corosync.conf
rm -rf /etc/corosync/*

4、执行重新启动集群文件系统服务的命令

killall pmxcfs
systemctl start pve-cluster.service

5、删除故障节点node文件

cd /etc/pve/nodes
ls
rm -rf /etc/pve/nodes/pve2    #改成故障节点对应路径

以上操作,没有报错既成功。

;