作者:星知苑 时间:2019-05-23 13:53:23
Proxmox VE(以下简称PVE)免费版本,每次登陆都要弹出订阅窗口,提示没有有效订阅“You do not have a valid subscription for this server. Please visit www.proxmox.com to get a list of available options.”
解决方法:
1、5.4版本
修改文件/usr/share/pve-manager/js/pvemanagerlib.js,大概37959行
Proxmox.Utils.checked_command(function() {}); // display subscription status 改成 //Proxmox.Utils.checked_command(function() {}); // display subscription status
2、5.2版本
修改文件/usr/share/pve-manager/js/pvemanagerlib.js,大概352行
if (data.status !== 'Active') { 改为 if (false) {修改方法可能多种多样,不同的版本可能也会有不一样