====== Enlever message "no valid subscription" ====== {{tag>virtualisation Proxmox "valid subscription message"}} ===== Méthode rapide ===== Cette méthode s'applique à Proxmox 6.2.x Pour faire l'opération en une seule commande # sed -i.backup -z "s/res === null || res === undefined || \!res || res\n\t\t\t.data.status \!== 'Active'/false/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service ===== Méthode rapide ===== Cette méthode s'applique à Proxmox 6.2.x Faire une sauvegarde et ouvrir le fichier proxmoxlib.js : # cd /usr/share/javascript/proxmox-widget-toolkit # cp proxmoxlib.js proxmoxlib.js.bak # vi proxmoxlib.js Rechercher cette ligne : if (res === null || res === undefined || !res || res .data.status !== 'Active') { Et remplacer par if (false) { Redémarrer pveproxy : systemctl restart pveproxy.service ===== Lien ===== * [[https://dannyda.com/2020/05/17/how-to-remove-you-do-not-have-a-valid-subscription-for-this-server-from-proxmox-virtual-environment-6-1-2-proxmox-ve-6-1-2-pve-6-1-2/|How to: Remove "You do not have a valid subscription for this server…"]]