I have a 2 node cluster running 6.3 where I have a primary server than normally runs all the VMs and a smaller backup server intended to be ready to run those VMs in case of planned or unplanned downtime on the primary.
I do a regular replication (every 2 hours) of all critical VMs to the backup server.
For planned downtimes, everything is simple. I can simply manually migrate all VMs to the backup, which is fast since they are mostly up-to-date already because of regular replications.
What I'm not clear on is what will happen if i get a crash on the Primary and need to bring up the VMs on the backup?
I'm aware that those VMs will only be current as of the last replication, and I'm also aware that I will temporarily have a no-quorum cluster, so presumably I will have to issue a
.
But beyond that, what needs to happen to launch these VMs on the backup?
Thanks!
I do a regular replication (every 2 hours) of all critical VMs to the backup server.
For planned downtimes, everything is simple. I can simply manually migrate all VMs to the backup, which is fast since they are mostly up-to-date already because of regular replications.
What I'm not clear on is what will happen if i get a crash on the Primary and need to bring up the VMs on the backup?
I'm aware that those VMs will only be current as of the last replication, and I'm also aware that I will temporarily have a no-quorum cluster, so presumably I will have to issue a
Code:
pvecm expected 1
But beyond that, what needs to happen to launch these VMs on the backup?
Thanks!