惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
D
Docker
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
H
Help Net Security
B
Blog
宝玉的分享
宝玉的分享

Proxmox Support Forum

[SOLVED] - Github Auth for Mirrors-Kernel Repo? [Automation] Mass migration tool for MS Win11/Server Proxmox GUI hang - not response is it possible to reject or quarantine spam based on conditions I set ? The PVENode task list in PVE9 is partially obscured due to the terminal font being too large. About 100% error reporting due to pveproxy.service hooks Kubernetes overlay networking breaks when upgrading from PVE 9.1 to PVE 9.2.3 Zentraler Speicher No space left on device Combine datastore and direct file archival to tape Kernel panic VFS: Unable to mount root fs on unknown-block (0,0) sobald ein 7.x Kernel verwendet wird. How to migrate disk of a VM from one ZFS to another Windows Server 2025 fails to boot after PVE 9.2 / Linux 7.0 Kernel upgrade Cannot Install Proxmox on T610 Poweredge with H700 PERC card sdn Config. gateway not reachable How to safely change domain/FQDN? Welche Filterquote erreicht ihr? NFS Share status unknown on 2 of 5 nodes Can't connect to PVE9 consoles [solved] Can't connect to PVE9 consoles [solved] [SOLVED] - Use secondary network for PVE commands Created cluster, one node storage gone BUG: proxmox mail gateway FROM = null bypass spam filtering Moving existing PBS from VMWare workstation to PVE cluster Does eBGP SDN fabric support external peering? Bug: PDM 1.1 not recognizing valid license status Proxmox GUI hang - not response PVE crashes unexpectedly Proxmox Backup Server 4.2 released! Advice
Replication in Proxmox
invalid@exam · 2026-06-23 · via Proxmox Support Forum

Hello! I have a doubt about replication in Proxmox. I'm used to work with VMWare ESXi and Veeam Backup & Replication so I have a concept of "Replication" that, from what I understand, is different from the one I should have to understand the best practices in Proxmox.

I have two identical physical servers: with VMWare and Veeam I can schedule jobs to have on server B an exact replica of the VMs on server A. If a VM on server A goes wrong or even if the entire server A explodes, I can power on the VMs on server B and I'm good to go (obviously loosing data changed since the last successful replication job).

I understand that "Replication" in Proxmox works in a different way because it replicates just the VMs' disks: for this reason, even if I have replication enabled for VMs between server A and server B, if something goes wrong on server A I have to manually copy config files on server B before being able to start the VM. This sounds a bit silly to me because I'm replicating VMs between servers exactly because I want a solution in case server A fails.

From what I've read HA could be the solution to my problem, but I've read that for HA you need three physical servers, two are not enough.

Am I missing something? What's the best way to have a reliable protection against hardware failure (or software issues) and reduced downtime with two servers?

Replication doesn't seem like a viable option, same for HA, maybe I should just think about manual restore from backup on the second server? That doesn't sound optimal either because of downtime but maybe it's the most sensible solution.

Thank you for your support!

Well, you can either use Veeam again for Proxmox and do the same thing...

Or, put your machines in a cluster and enable HA - But have a third machine that's just for quorum. Then you can have your cake and eat it too. It just needs to be a device that can witness both nodes at the same time, just in case something happens to one, it can be the vote that says who is the winner to take over during an HA event.

Last edited:

Thank you for the reply! I've experimented with a new approach to the problem, building a two nodes cluster and 3 VMs (no HA):

Initial situation:

-------------------------------------------------------------
NODE-A:
-VM100
-VM101
-VM102

NODE-B:
Empty but receives replicas from NODE-A
-------------------------------------------------------------

When the first replication job is completed I manually copy VM .conf files from NODE-A (100.conf, 101.conf, 102.conf) and paste them on NODE-B (renaming them as 1100.conf, 1101.conf, 1102.conf).

Final result:

-------------------------------------------------------------
NODE-A:
-VM100
-VM101
-VM102

NODE-B:
-VM1100
-VM1101
-VM1102
-------------------------------------------------------------

If something goes wrong on NODE-A, the only thing I have to do is to start VMs on NODE-B. I've tried the concept on a real setup and it perfectly works, the only think I have to do is to keep VMs conf files in sync between the two servers (a pretty easy job considering that I've about 10 VMs that are modified very very rarely)

I wonder if this is a terrible approach or it could make sense (considering that besides of replication I always have backups managed with PBS, this would be just a quick way to restore VMs)

Any opinion would be highly apprecciated :)

Thank you for the reply! I've experimented with a new approach to the problem, building a two nodes cluster and 3 VMs (no HA):

Any opinion would be highly apprecciated :)

I guess you could do that, just setup something like SyncThing or a cron job to sync config files. That might get a little messy if it's not configured right though.

I wonder if this is a terrible approach or it could make sense (considering that besides of replication I always have backups managed with PBS, this would be just a quick way to restore VMs)

It should work but what's the benefit compared to the regular storage replication + ha already available from Proxmox VE?

When the first replication job is completed I manually copy VM .conf files from NODE-A (100.conf, 101.conf, 102.conf) and paste them on NODE-B (renaming them as 1100.conf, 1101.conf, 1102.conf).

Be very careful with this: VMs with IDs 11xx.conf will be using disks with ID 1xx: when you delete VM 11xx it will delete the replicated disk and/or potentially leaving a dangling zvol.

Don't reinvent the wheel: use HA and use PBS as QDevice. You already need a cluster for replication, and it's quorum requirements are the same with or without HA, with the added benefit that you will not have to do anything if A-server fails, HA will do it for you. If in doubt, set up a testing enviroment with VMs and practice how it works.

You could use a third Witnees machine to orchestrate the replicas. Try it as a VM on one of the nodes, but then plan to move it outside. It also runs on a Raspberry.