Skip to main content

Install Proxmox Backup Server

Virtual Machine Manager (VMM)

Download Proxmox Backup Server ISO

https://www.proxmox.com/en/downloads/proxmox-backup-server/iso

Upload ISO to VMM

image.png

Open VMM > Image > ISO File > Add > From computer

image.png

Upload successful

Create VM

Add Network (as needed)

image.png

Click Network > Add

I'm using VLAN 438 here, as this is my dedicated VLAN for backup traffic.

You'll need to make sure you adjust any firewall rules as necessary for your Proxmox VE nodes to reach Proxmox Backup Server on tcp/8007.

 

Stage the VM

image.png

Click "Virtual Machine" > Create > Linux

image.png

If unable to see the PBS login screen at boot, change the video card to vga

image.png

32 GB is sufficient for PBS host disk

image.png

Click "Settings" > Enable Space Reclamation

image.png

Putting the VM on dedicated VLAN

image.png

Set the .iso file for boot, Autostart to "Yes"

 

Power on and Install PBS

image.png

Select VM and click "Connect"

image.png

Install (Graphical, or however you prefer)

image.png

Looks good

When setting the root password, set something easy initially, then change once you can logon via HTTP / SSH and paste a stronger password in.

image.png

DHCP has pulled an IP in the dedicated VLAN

Upon installation, the interface will be set to static IP configuration. If you want to DHCP-enable the interface later, install isc-dhcp-client and edit /etc/network/interfaces to change the static config to dhcp.

 

Configure PBS

Log into your PBS server either via SSH or HTTP.

sed '/^[^#]/ s/^/# /' -i /etc/apt/sources.list.d/pbs-enterprise.sources

Disable enterprise repository

cat << EOF > /etc/apt/sources.list.d/pbs-no-subscription.sources
Types: deb
URIs: http://download.proxmox.com/debian/pbs
Suites: $(grep VERSION_CODENAME /etc/os-release | cut -d '=' -f 2)
Components: pbs-no-subscription
Signed-By: /usr/share/keyrings/proxmox-archive-keyring.gpg
EOF

Enable the no-subscription repository

apt clean && apt update && apt upgrade -y

Upgrade packages