Bonjour à tous
Ce post express juste pour vous informer que Proxmox à rajouter une fonction de support payante (optionnelle) et a pousser de nouveau repository, qui posent problème lorsque l’on a pas souscrit à un support.
root@Proxmox-1:~# apt-get update Hit http://ftp.fr.debian.org wheezy Release.gpg Hit http://download.proxmox.com wheezy Release.gpg Hit http://security.debian.org wheezy/updates Release.gpg Hit http://download.proxmox.com wheezy Release Hit http://security.debian.org wheezy/updates Release Hit http://ftp.fr.debian.org wheezy Release Hit http://download.proxmox.com wheezy/pve amd64 Packages Hit http://security.debian.org wheezy/updates/main amd64 Packages Hit http://security.debian.org wheezy/updates/contrib amd64 Packages Hit http://ftp.fr.debian.org wheezy/main amd64 Packages Hit http://security.debian.org wheezy/updates/contrib Translation-en Hit http://security.debian.org wheezy/updates/main Translation-en Hit http://ftp.fr.debian.org wheezy/contrib amd64 Packages Hit http://ftp.fr.debian.org wheezy/contrib Translation-en Ign https://enterprise.proxmox.com wheezy Release.gpg Hit http://ftp.fr.debian.org wheezy/main Translation-en Ign http://download.proxmox.com wheezy/pve Translation-en_US Ign http://download.proxmox.com wheezy/pve Translation-en Ign https://enterprise.proxmox.com wheezy Release Err https://enterprise.proxmox.com wheezy/pve-enterprise amd64 Packages The requested URL returned error: 401 Ign https://enterprise.proxmox.com wheezy/pve-enterprise Translation-en_US Ign https://enterprise.proxmox.com wheezy/pve-enterprise Translation-en W: Failed to fetch https://enterprise.proxmox.com/debian/dists/wheezy/pve-enterprise/binary-amd64/Packages The requested URL returned error: 401 E: Some index files failed to download. They have been ignored, or old ones used instead. |
Pour parer ce problème il suffit de désactiver les sources dédiées en ajoutant un # dans le fichier :
nano /etc/apt/sources.list.d/pve-enterprise.list #deb https://enterprise.proxmox.com/debian wheezy pve-enterprise |
Ce petit changement vous rends votre serveur opérationnel comme avant.
root@Proxmox-1:~# apt-get update Hit http://ftp.fr.debian.org wheezy Release.gpg Hit http://security.debian.org wheezy/updates Release.gpg Hit http://ftp.fr.debian.org wheezy Release Hit http://security.debian.org wheezy/updates Release Hit http://security.debian.org wheezy/updates/main amd64 Packages Hit http://ftp.fr.debian.org wheezy/main amd64 Packages Hit http://security.debian.org wheezy/updates/contrib amd64 Packages Hit http://ftp.fr.debian.org wheezy/contrib amd64 Packages Hit http://download.proxmox.com wheezy Release.gpg Hit http://security.debian.org wheezy/updates/contrib Translation-en Hit http://download.proxmox.com wheezy Release Hit http://security.debian.org wheezy/updates/main Translation-en Hit http://ftp.fr.debian.org wheezy/contrib Translation-en Hit http://download.proxmox.com wheezy/pve amd64 Packages Hit http://ftp.fr.debian.org wheezy/main Translation-en Ign http://download.proxmox.com wheezy/pve Translation-en_US Ign http://download.proxmox.com wheezy/pve Translation-en Reading package lists... Done |
De plus pour éviter le message au login sur l’interface web, il suffit d’éditer le fichier
nano/usr/share/pve-manager/ext4/pvemanagerlib.js |
et de commenter les lignes suivantes
// if (data.status == 'Active') { // Ext.Msg.show({ // title: gettext('No valid subscription'), // icon: Ext.Msg.WARNING, // msg: PVE.Utils.noSubKeyHtml, // buttons: Ext.Msg.OK, // callback: function(btn) { // if (btn !== 'ok') { // return; // } // orig_cmd(); // } // }); // } else { // orig_cmd(); // } |
Sans oublier de relancer le pvedaemon avec la commande :
/etc/init.d/pvedaemon restart |
Bonne journée à tous