CUCM升级时报错 "Upgrades are prohibited during Licensing Grace Period"的解决办法

日前做CUCM升级操作时,遇到如下报错

"Upgrades are prohibited during Licensing GracePeriod",经过资料查找及自己摸索,发现有两个办法可以解决此问题:

问题现象:

After Disaster Recovery System (DRS) backup is done onthe old server, we DRS restore all the data into the newly replaced server. Thelicense file for old server is valid for 30 days.

During license grace period, you can not proceed due tothe upgrade error message "Upgrades are prohibited during License GracePeriod".

If this error message is seen during a jump upgrade to9.1(2) see CSCuj10105.

解决办法:

方法一:

此方法是思科给出的解决办法,方法如下:

If license is uploaded before DRS restore then use thefollowing steps to correct the state of licensing on the system:

1. Remove the rehosted (new) license files using clicommond "file delete xxx.lic"

2. Restart license manager.

3. Re-upload the rehosted (new) license files.

方法二:

既然明确知道此报错是由于license的问题,那么我们是否可以导入一个demo license呢?答案是可以;测试通过!

时间: 2024-11-07 16:13:48

CUCM升级时报错 "Upgrades are prohibited during Licensing Grace Period"的解决办法的相关文章

python运行时报错can't find '__main__' module in 'xxx' 的解决办法

刚开始学习python,想要使用pycharm来编辑和运行程序,所以就安装了下pycharm ,写了个简单的代码决定运行下,结果出现如下错误: 度娘找了一番,解决了问题,发现错误主要因为在这里 没有运行的成功的原因就是这里没有选择*.py 文件. 选择目标文件夹当动中的 *.py 文件. python运行时报错can't find '__main__' module in 'xxx' 的解决办法 原文地址:https://www.cnblogs.com/dcx-1993/p/10306327.h

LoadRunner使用odbc时报错can't get hostname for your address的解决方法

此问题以前没有出现过,是这次在我带领的小强性能测试A1班中有个别同学出现了这个问题,正好也就整理下说下解决方法吧. 此问题是由于检测hostname的时候出现的问题,解决方法如下: 修改mysql的配置文件my.cnf,然后在[mysqld] 下面增加一行:skip-name-resolve,之后保存退出,再重启mysql服务即可.再次使用odbc链接就木有问题啦! 1.性能测试实战精讲A1班已经满员,A2班接受预报名,咨询QQ:20835032382.python自动化测试班马上要开课啦,咨询

domino用户foxmail接收邮件时报“Maildrop opened for exclusive access by another user”的解决办法

[背景] 近期,不少用户foxmail接收domino系统的邮件时报"Maildrop opened for exclusive access by another user". [解决办法] 在notes.ini增加参数POP_SESSION_TIMEOUT=10问题不在出现(可以在控制台输入 set config POP_SESSION_TIMEOUT=10) 参考资料 http://www-01.ibm.com/support/docview.wss?uid=swg2124758

NuGet Package Explorer上传时报:failed to process request:'Method Not Allowed'错误解决办法

相关日志:PUT /api/v2/package - 1000 -  NuGet+Package+Explorer/3.15.0.0+(Microsoft+Windows+NT+6.2.9200.0) - 405 0 0 0 解决办法Web.config里面加入设置: <system.webServer> <modules>     <remove name="WebDAVModule" />   </modules>   <han

linux centos环境下,perl使用DBD::Oracle遇到报错Can&#39;t locate DBDOracle.pm in @INC 的解决办法

前言 接手前辈的项目,没有接触.安装.使用过perl和DBD::Oracle,也没有相关的文档记录,茫茫然不知所措~~.一开始发现这个问题,就想着迅速解决,就直接在google上搜报错信息,搜索的过程中发现 如果不搞清楚前因后果我连解决方案都'看不见''看不懂'. 所以还是要补充这方面的知识,再思考解决方案.以下内容就是我一边学习一边解决问题的过程,如果不足,请各位大佬指出. 报错 install_driver(Oracle) failed: Can't locate DBD/Oracle.pm

VUE.JS 使用axios数据请求时数据绑定时 报错 TypeError: Cannot set property &#39;xxxx&#39; of undefined 的解决办法

正常情况下在data里面都有做了定义 在函数里面进行赋值 这时候你运行时会发现,数据可以请求到,但是会报错 TypeError: Cannot set property 'listgroup' of undefined 主要原因是: 在 then的内部不能使用Vue的实例化的this, 因为在内部 this 没有被绑定.可以看下 Stackoverflow 的解释: 解决办法: 1.用ES6箭头函数,箭头方法可以和父方法共享变量 2.在请求axios外面定义一下 var that=this 问题

使用webpack命令打包时,报错TypeError: Cannot read property &#39;presetToOptions&#39; of undefined的解决办法

我只安装了webpack,没有安装webpack-cli,第一次输入webpack打包时,提示 One CLI for webpack must be installed. These are recommended choices, delivered as separate packages: - webpack-cli (https://github.com/webpack/webpack-cli) The original webpack full-featured CLI. We wi

VUE - 使用axios数据请求时数据绑定时 报错 TypeError: Cannot set property &#39;xxxx&#39; of undefined 的解决办法

created() { var that=this axios.get('http://jsonplaceholder.typicode.com/todos') .then(function (res) { // handle success // console.log(res); that.todos = res.data }) .catch(function (error) { // handle error console.log(error); }) .finally(function

VS Code报错Module &#39;xx&#39; has no &#39;xx&#39; member pylint(no-member)解决办法

pylint是vscode的python语法检查器,pylint是静态检查,在用第三方库的时候有些成员只有在运行代码的时候才会被建立,它就找不到成员,在设置(settings.json)里添加 "python.linting.pylintArgs": ["--generate-members"]来避免报错 VS Code报错Module 'xx' has no 'xx' member pylint(no-member)解决办法 原文地址:https://www.cn