Deviding a cluster into 2 ,

  • Thread starter Thread starter coffe
  • Start date Start date
C

coffe

Guest
We have today a cluster with 6 hosts. i would like to split it into 2, is it possible in a easy way ?
 
We have today a cluster with 6 hosts. i would like to split it into 2, is it possible in a easy way ?
Hi,
this should be not so difficult.
First make a backup of /etc/pve/cluster.cfg (and take a look at the file).
use "pveca -l" to show cluster.
delete a node from the cluster:
Code:
pveca -d ID
after that, go on this node and make this to a new master:
Code:
pveca -c
Add other nodes (which aren't in the first cluster) to the new master (on the node):
Code:
pveca -a -h IP_of_new_master
This should be all.

Udo
 
Last edited:
Tnx, its 2 of the servers in my big cluster i like to move out to there own, been holding that task back waiting for v2.0.

We today got 3 clusters running total of 9 servers .
 
Hi,
this should be not so difficult.
First make a backup of /etc/pve/cluster.cfg (and take a look at the file).
use "pveca -l" to show cluster.
delete a node from the cluster:
Code:
pveca -d ID
after that, go on this node and make this to a new master:
Code:
pveca -m
Add other nodes (which aren't in the first cluster) to the new master (on the node):
Code:
pveca -a -h IP_of_new_master
This should be all.

Udo
Hi,
"pveca -m" is wrong when the node isn't in a cluster.
"pveca -c" is the right command. I will edit the posting before.

Udo