Open a web browser and navigate to the Proxmox VE web interface:
# Access the web interface
https://192.168.1.100:8006
You'll see a security warning about the self-signed certificate. Click "Advanced" and "Proceed" to continue.
Initial Login:
- Username: root
- Password: [password set during installation]
- Realm: Linux PAM standard authentication
After login, you'll see the Proxmox VE dashboard. Perform these initial configurations:
Update Package Repositories:
Open the node shell (Node > Shell) and run:
# Comment out enterprise repository (requires subscription)
sed -i 's/^deb/#deb/' /etc/apt/sources.list.d/pve-enterprise.list
# Add no-subscription repository
echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
# Update package lists and upgrade system
apt update && apt full-upgrade -y
Warning: The no-subscription repository is for testing and non-production use. For production environments, consider purchasing a Proxmox VE subscription.
Verification: Run pveversion to confirm Proxmox VE 9.1 is installed and check for any available updates.