User Tools

Site Tools


os:proxmox_ve:misc

This is an old revision of the document!


Proxmox VE - Misc

Configure Community Repository

PVE Wiki: Package Repositories

DEB_VER="$(awk -F= '/^VERSION_CODENAME=/{print $2}' /etc/os-release)"
echo "deb http://download.proxmox.com/debian/pve ${DEB_VER} pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list

Disable Enterprise Repository

mv /etc/apt/sources.list.d/pve-enterprise.list{,.disabled}

Remove "No Subscription" Message

sed -i.bak 's/NotFound/Active/g' /usr/share/perl5/PVE/API2/Subscription.pm
systemctl restart pveproxy.service

Tested with pve-manager/6.1-3/37248ce6 (running kernel: 5.3.10-1-pve)

WebUI on Port 80/443

Replace <proxmoxip> by the ip address of your proxmox server.

iptables -t nat -I PREROUTING --src 0/0 --dst "<proxmoxip>" -p tcp --dport 80 -j REDIRECT --to-ports 8006 iptables -t nat -I PREROUTING --src 0/0 --dst "<proxmoxip>" -p tcp --dport 443 -j REDIRECT --to-ports 8006
os/proxmox_ve/misc.1586534897.txt.gz · Last modified: 2020-04-10 18:08 by Manuel Frei