server.md edited online with Bitbucket about proxmox
This commit is contained in:
@@ -138,9 +138,74 @@ todo list :
|
|||||||
- [ ] Monitor with cockpit or netdata
|
- [ ] Monitor with cockpit or netdata
|
||||||
- [ ] Set up email notifications for Proxmox alerts
|
- [ ] Set up email notifications for Proxmox alerts
|
||||||
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
when i connect to proxmox i get this message : You do not have a valid subscription for this server. Please visit www.proxmox.com to get a list of available options.
|
||||||
|
ChatGPT said:
|
||||||
|
|
||||||
|
Yep, that message is normal if you're using the free version of Proxmox without a paid subscription.
|
||||||
|
💡 What it means
|
||||||
|
|
||||||
|
Proxmox VE (Virtual Environment) is open source and free to use.
|
||||||
|
|
||||||
|
But they offer enterprise support via paid subscriptions.
|
||||||
|
|
||||||
|
That message is just a reminder—it doesn’t block any functionality (except access to the enterprise repo).
|
||||||
|
|
||||||
|
✅ Your Options
|
||||||
|
1. Ignore It
|
||||||
|
|
||||||
|
Totally safe to ignore.
|
||||||
|
|
||||||
|
It just appears after login on the web UI.
|
||||||
|
|
||||||
|
2. Disable the Message (UI Only)
|
||||||
|
|
||||||
|
You can remove the popup by editing a file on your Proxmox host:
|
||||||
|
|
||||||
|
nano /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
|
||||||
|
|
||||||
|
Search for:
|
||||||
|
|
||||||
|
if (data.status !== 'Active') {
|
||||||
|
|
||||||
|
And change it to:
|
||||||
|
|
||||||
|
if (false) {
|
||||||
|
|
||||||
|
Then save (Ctrl+O, Enter, Ctrl+X) and clear your browser cache or reboot the UI:
|
||||||
|
|
||||||
|
systemctl restart pveproxy
|
||||||
|
|
||||||
|
⚠️ Note: This gets overwritten when you update Proxmox, so it’s a temporary cosmetic fix.
|
||||||
|
3. Switch to the Free Repo
|
||||||
|
|
||||||
|
Make sure you're using the no-subscription repository for updates:
|
||||||
|
|
||||||
|
Edit this file:
|
||||||
|
|
||||||
|
nano /etc/apt/sources.list.d/pve-enterprise.list
|
||||||
|
|
||||||
|
Comment out the enterprise repo:
|
||||||
|
|
||||||
|
# deb https://enterprise.proxmox.com/debian/pve bookworm pve-enterprise
|
||||||
|
|
||||||
|
Then add the no-subscription repo:
|
||||||
|
|
||||||
|
echo "deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
|
||||||
|
|
||||||
|
And update:
|
||||||
|
|
||||||
|
apt update && apt full-upgrade
|
||||||
|
|
||||||
|
Let me know if you want help setting that up or if you're considering a subscription.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
END PROXMOX
|
||||||
|
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
-------------------------------------------------------------------------------------
|
||||||
|
|
||||||
ipv6 : fe80::d6ae:52ff:fec9:29d6
|
ipv6 : fe80::d6ae:52ff:fec9:29d6
|
||||||
netmask : 64
|
netmask : 64
|
||||||
gateway : fe80::226:bff:feef:59ff
|
gateway : fe80::226:bff:feef:59ff
|
||||||
|
|||||||
Reference in New Issue
Block a user