PBS vs. direktes Backup in Proxmox VE
Proxmox VE integriertes Backup:
+ Eingebaut, keine Extrainstallation
- Keine Deduplizierung
- .vma.zst Dateien (groesser)
- Kein Cross-Server Dedup
Proxmox Backup Server (PBS):
+ Deduplizierung ueber alle VMs/Server
+ Inkrementelle Backups (Changed Block Tracking)
+ Verifizierung und Pruefung
+ Papierkorb (unloesliche Backups)
+ REST-API
Empfehlung: PBS fuer > 5 VMs oder mehrere Proxmox-Server
PBS installieren
# Option 1: Separate PBS-VM oder Bare Metal
# ISO herunterladen: proxmox.com/en/downloads
# Option 2: PBS in Proxmox VE als LXC
pveam update
pveam available | grep debian
# Oder PBS als Paket auf Debian
echo "deb http://download.proxmox.com/debian/pbs bookworm pbs-no-subscription" > /etc/apt/sources.list.d/pbs.list
curl https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -o /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
apt update && apt install proxmox-backup-server
Datastore erstellen
# PBS Web-UI (https://pbs-server:8007)
# Konfiguration → Datastores → Add Datastore
# Oder per CLI
proxmox-backup-manager datastore create main-store /data/backup
# Tuning-Optionen:
# Garbage Collection: Taeglich (entfernt unreferenzierte Chunks)
# Verify Schedule: Wöchentlich (Integritaet pruefen)
PBS in Proxmox VE einbinden
# In Proxmox VE Web-UI:
# Datacenter → Storage → Add → Proxmox Backup Server
# Oder per CLI auf PVE-Node:
pvesm add pbs pbs-store --server pbs.firma.local --username admin@pbs --password geheim --datastore main-store --fingerprint "XX:XX:XX:..."
Backup-Job in Proxmox VE
# Backup-Job erstellen
# Datacenter → Backup → Add
# Oder CLI:
pvesh create /cluster/backup --storage pbs-store --vmid 100,101,102 --schedule "daily" --starttime "02:00" --mode snapshot --compress zstd --prune-backups "keep-daily=7,keep-weekly=4,keep-monthly=3"
Wiederherstellung und Tape-Out
# Einzelne Datei aus VM-Backup extrahieren
# PBS Web-UI: Datastore → Snapshots → Browse Contents
# VM/CT vollstaendig wiederherstellen
# PVE Web-UI: VM → Backup → Restore
# Tape-Out (fuer Offsite-Backup)
# PBS: Tape Drives → Drive hinzufuegen (LTO Tape)
# Tape Backup Jobs → Schedule erstellen
FAQ
Brauche ich PBS wenn ich nur einen Proxmox-Server habe?
Auch bei einem PVE-Server lohnt sich PBS durch Deduplizierung und bessere Verwaltung. Mindestens einen separaten Storage (NAS) fuer Backups nutzen.
Fazit
Proxmox Backup Server ist die optimale Backup-Loesung fuer Proxmox-Umgebungen: Deduplizierung spart 50-70% Platz gegenueber normalen VZDump-Backups.
Proxmox und PBS fuer KMU in Heidelberg, Mannheim und der Rhein-Neckar-Region. Beratung anfragen.