Uploaded May 2025 | Updated September 2026, 2 weeks ago
Achieving Quorum in a Two Node Proxmox Cluster
In a Proxmox VE cluster, quorum is the minimum number of nodes that must be online and able to communicate with each other to make coordinated decisions and safely manage shared resources.
๐ What Quorum Means in Proxmox
- Proxmox uses Corosync for cluster communication.
- Quorum ensures data consistency and split-brain prevention (where two nodes might think they own the same resource).
- Without quorum, the cluster disables key operations, such as starting or migrating VMs, to avoid corruption.
๐งฎ How Quorum Is Calculated
Quorum is based on the number of nodes in your cluster:
Quorum = (Total number of nodes / 2) + 1
In this video, we will maintain quorum by:
Editing the Configuration File:
- cp /etc/pve/corosync.conf /etc/pve/corosync.new.conf
- nano /etc/pve/corosync.new.conf
- Increase quorum votes to 2
- Increment the config version key in the totem section by 1
- mv /etc/pve/corosync.conf /etc/pve/corosync.conf.bak
- mv /etc/pve/corosync.new.conf /etc/pve/corosync.conf
If you really mess things up, itโs possible that the nodes wonโt quorate. If this happens, the entire Proxmox cluster filesystem becomes read-only. You can temporarily reduce the required quorum to 1 to continue:
- pvecm expected 1.
โ ๏ธ Important Notes:
- Two-node clusters are problematic without special configuration because you need both online at all times.
- To solve this, you can add a QDevice (a third quorum vote provider that doesnโt run VMs) or use external qnetd.
- Loss of quorum = โno quorumโ status โ cluster operations restricted (you may still force actions manually, but it's risky).
โ Best Practices:
- Always have at least 3 nodes or 2 nodes + QDevice.
- Use redundant networking to prevent quorum loss from NIC failure.
- Avoid forcing actions when there's no quorum unless you fully understand the risk.
Links:
pve.proxmox.com/pve-docs/pve-admin-guide.html#_corosync_configuration
๐ฌ Have questions or got stuck during your migration? Drop a comment below โ I respond to all questions!
๐ Like & Subscribe if this helped you โ more Proxmox, virtualization, and homelab content is coming weekly!
๐ธ Buy me a coffee :
buymeacoffee.com/liv4it
๐ธ Support channel & make donation :
paypal.me/aminenina/10
๐ธ Subscribe for more videos :
Youtube: youtube.com/user/aminosninatos
๐ธ Follow me On Social Media
Facebook : facebook.com/aminosninatos
***********************************************************************
๐ธ Proxmox VM Migration In Cluster
youtu.be/T3A5WzW-KDc
๐ธ Proxmox Clustering with 2 Nodes
youtu.be/0AB5sZccmpY
๐ธ How To Passthrough Physical Network Cards NIC to VM like PFsense in Proxmox
youtu.be/kmd4l66Tr2g
๐ธ How To Create a Simple Workflow On n8n World's Most Popular Automation Platform
youtu.be/zhxycn-rr1g
๐ธ How to Create Google Credentials On The world's most popular workflow automation platform n8n
youtu.be/YfXT5h93CKo
๐ธHow To Install The world's most popular workflow automation platform n8n On Proxmox
youtu.be/J1cpJRuTHwE
๐ธHow To Install Uptime Kuma a Self Hosted Monitoring Application on Proxmox
youtu.be/cCxgkHd0E9Y
๐ธHow To Import a ESXI VM In Proxmox Virtual Environment
youtu.be/GJQTwfzh7iQ
๐ธHow To Setup Notifications On Proxmox With Gotify
youtu.be/Li0fnYtSh2s
๐ธHow To Install an SSL Certificate on Proxmox
youtu.be/lCkrsaDEiT4
๐ธ How To Monitor Proxmox Using InfluxDB and Grafana
youtu.be/qWvcm5NzuCI
๐ธ Proxmox Backup Server Backup & Restore Operations
youtu.be/RSXrE8uBOEM
๐ธ How To Lower The Power Use of Proxmox Server
youtu.be/FJiEeHmiiH0
๐ธ Proxmox VE Helper Scripts
youtu.be/gRVSbqXejtk
๐ธ How to migrate Hyper-v vhdx VM to Proxmox qcow2
youtu.be/CoUVh9mDqFA
๐ธHow to Configure the Firewall on Proxmox
youtu.be/SnjBjU9irtg
๐ธHow to Configure SDN Software Defined Network on Proxmox
youtu.be/EinV4FqvCHA
๐ธ How to Deploy LXC Container in Proxmox with Ansible
youtu.be/XdozKMndWdo
๐ธ How To Install Packages on Proxmox VM with Terraform
youtu.be/RRJrLTeU67Y
๐ธ How to deploy VMs in Proxmox with Terraform
youtu.be/wkoMcVBqjuI
๐ธ How To Create Proxmox Cloud-init Templates
hyoutu.be/3TH7fBUAIxk
๐ธ How to check ZFS File System Storage Pool on Proxmox
youtu.be/3mkP09SonD4
๐ธ How to Fix Proxmox PVE canโt create ZFS pool
youtu.be/JtHzV2TXs6M
๐ธ How to take Snapshots and run Backups on Proxmox
youtu.be/98WDxmvTkwY
๐ธ How to Install Proxmox QEMU Guest Agent on Ubuntu
youtu.be/ZpEYkA4C4jY
***********************************************************************
#Proxmox #quorum #Cluster
Achieving Quorum in a Two Node Proxmox Cluster
In a Proxmox VE cluster, quorum is the minimum number of nodes that must be online and able to communicate with each other to make coordinated decisions and safely manage shared resources.
๐ What Quorum Means in Proxmox
- Proxmox uses Corosync for cluster communication.
- Quorum ensures data consistency and split-brain prevention (where two nodes might think they own the same resource).
- Without quorum, the cluster disables key operations, such as starting or migrating VMs, to avoid corruption.
๐งฎ How Quorum Is Calculated
Quorum is based on the number of nodes in your cluster:
Quorum = (Total number of nodes / 2) + 1
In this video, we will maintain quorum by:
Editing the Configuration File:
- cp /etc/pve/corosync.conf /etc/pve/corosync.new.conf
- nano /etc/pve/corosync.new.conf
- Increase quorum votes to 2
- Increment the config version key in the totem section by 1
- mv /etc/pve/corosync.conf /etc/pve/corosync.conf.bak
- mv /etc/pve/corosync.new.conf /etc/pve/corosync.conf
If you really mess things up, itโs possible that the nodes wonโt quorate. If this happens, the entire Proxmox cluster filesystem becomes read-only. You can temporarily reduce the required quorum to 1 to continue:
- pvecm expected 1.
โ ๏ธ Important Notes:
- Two-node clusters are problematic without special configuration because you need both online at all times.
- To solve this, you can add a QDevice (a third quorum vote provider that doesnโt run VMs) or use external qnetd.
- Loss of quorum = โno quorumโ status โ cluster operations restricted (you may still force actions manually, but it's risky).
โ Best Practices:
- Always have at least 3 nodes or 2 nodes + QDevice.
- Use redundant networking to prevent quorum loss from NIC failure.
- Avoid forcing actions when there's no quorum unless you fully understand the risk.
Links:
pve.proxmox.com/pve-docs/pve-admin-guide.html#_corosync_configuration
๐ฌ Have questions or got stuck during your migration? Drop a comment below โ I respond to all questions!
๐ Like & Subscribe if this helped you โ more Proxmox, virtualization, and homelab content is coming weekly!
๐ธ Buy me a coffee :
buymeacoffee.com/liv4it
๐ธ Support channel & make donation :
paypal.me/aminenina/10
๐ธ Subscribe for more videos :
Youtube: youtube.com/user/aminosninatos
๐ธ Follow me On Social Media
Facebook : facebook.com/aminosninatos
***********************************************************************
๐ธ Proxmox VM Migration In Cluster
youtu.be/T3A5WzW-KDc
๐ธ Proxmox Clustering with 2 Nodes
youtu.be/0AB5sZccmpY
๐ธ How To Passthrough Physical Network Cards NIC to VM like PFsense in Proxmox
youtu.be/kmd4l66Tr2g
๐ธ How To Create a Simple Workflow On n8n World's Most Popular Automation Platform
youtu.be/zhxycn-rr1g
๐ธ How to Create Google Credentials On The world's most popular workflow automation platform n8n
youtu.be/YfXT5h93CKo
๐ธHow To Install The world's most popular workflow automation platform n8n On Proxmox
youtu.be/J1cpJRuTHwE
๐ธHow To Install Uptime Kuma a Self Hosted Monitoring Application on Proxmox
youtu.be/cCxgkHd0E9Y
๐ธHow To Import a ESXI VM In Proxmox Virtual Environment
youtu.be/GJQTwfzh7iQ
๐ธHow To Setup Notifications On Proxmox With Gotify
youtu.be/Li0fnYtSh2s
๐ธHow To Install an SSL Certificate on Proxmox
youtu.be/lCkrsaDEiT4
๐ธ How To Monitor Proxmox Using InfluxDB and Grafana
youtu.be/qWvcm5NzuCI
๐ธ Proxmox Backup Server Backup & Restore Operations
youtu.be/RSXrE8uBOEM
๐ธ How To Lower The Power Use of Proxmox Server
youtu.be/FJiEeHmiiH0
๐ธ Proxmox VE Helper Scripts
youtu.be/gRVSbqXejtk
๐ธ How to migrate Hyper-v vhdx VM to Proxmox qcow2
youtu.be/CoUVh9mDqFA
๐ธHow to Configure the Firewall on Proxmox
youtu.be/SnjBjU9irtg
๐ธHow to Configure SDN Software Defined Network on Proxmox
youtu.be/EinV4FqvCHA
๐ธ How to Deploy LXC Container in Proxmox with Ansible
youtu.be/XdozKMndWdo
๐ธ How To Install Packages on Proxmox VM with Terraform
youtu.be/RRJrLTeU67Y
๐ธ How to deploy VMs in Proxmox with Terraform
youtu.be/wkoMcVBqjuI
๐ธ How To Create Proxmox Cloud-init Templates
hyoutu.be/3TH7fBUAIxk
๐ธ How to check ZFS File System Storage Pool on Proxmox
youtu.be/3mkP09SonD4
๐ธ How to Fix Proxmox PVE canโt create ZFS pool
youtu.be/JtHzV2TXs6M
๐ธ How to take Snapshots and run Backups on Proxmox
youtu.be/98WDxmvTkwY
๐ธ How to Install Proxmox QEMU Guest Agent on Ubuntu
youtu.be/ZpEYkA4C4jY
***********************************************************************
#Proxmox #quorum #Cluster










