Liferay Startup 中止并显示与版本更新相关的消息,但我从未进行过更新

Liferay Startup aborted with message related to version update but I never did the update

我 运行 对我的 liferay 6.2(内部版本 6210)有一种奇怪的行为。我试图安装最新的修复包 portal-84,但无法启动我的服务器。由于我还原了所有修复包等,但启动仍然无法正常工作,我怀疑更新是原因。我收到以下消息 Permission conversion to algorithm 6 has not been completed。到目前为止,启动看起来很正常。奇怪的是,除了 liferay 6.2,我的数据库模式从未用于任何其他用途。

10:42:13,566 ERROR [localhost-startStop-1][MainServlet:212] java.lang.IllegalStateException: Permission conversion to algorithm 6 has not been completed. Please complete the conversion prior to starting the portal. The conversion process is available in portal versions starting with 5203 and prior to 6200.
java.lang.IllegalStateException: Permission conversion to algorithm 6 has not been completed. Please complete the conversion prior to starting the portal. The conversion process is available in portal versions starting with 5203 and prior to 6200.
        at com.liferay.portal.tools.DBUpgrader._checkPermissionAlgorithm(DBUpgrader.java:297)
        at com.liferay.portal.tools.DBUpgrader.upgrade(DBUpgrader.java:135)
        at com.liferay.portal.events.StartupAction.doRun(StartupAction.java:181)
        at com.liferay.portal.ee.license.StartupAction.doRun(Unknown Source)
        at com.liferay.portal.events.StartupAction.run(StartupAction.java:74)
        at com.liferay.portal.servlet.MainServlet.processStartupEvents(MainServlet.java:1245)
        at com.liferay.portal.servlet.MainServlet.init(MainServlet.java:209)
        at javax.servlet.GenericServlet.init(GenericServlet.java:160)
        at org.apache.catalina.core.StandardWrapper.initServlet(StandardWrapper.java:1280)
        at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1193)
        at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1088)
        at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:5176)
        at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5460)
        at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
        at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:901)
        at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:877)
        at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:633)
        at org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:656)
        at org.apache.catalina.startup.HostConfig$DeployDescriptor.run(HostConfig.java:1635)
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
        at java.util.concurrent.FutureTask.run(FutureTask.java:262)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
        at java.lang.Thread.run(Thread.java:745)
Stopping the server due to unexpected startup errors

假设我的数据库有问题(虽然我不知道那是怎么发生的)。当我使用嵌入式内存数据库启动 liferay 时,启动工作正常。日志中只有一些其他消息,因为文件系统中有 lucene 文件,而内存数据库中没有条目。 select * from RELEASE_; 声明了正确的版本 portal 6210 并且我配置的数据库连接也是正确的(尝试在 tomcat 中使用 jndi 资源并在 portal-ext.properties 中使用连接信息)。但也许还有其他一些保存版本的位置,并且对门户启动至关重要。

有没有人有过这种行为,或者这是(或多或少)我独有的完全特例?

谢谢你的问候。塞巴斯蒂安

升级脚本检查 ResourceCode table 是否为空。它在 Liferay 6 之前使用,Liferay 6 升级脚本通常会删除其中的所有数据或整个 table。

为了克服这个问题,我根据 this tutorial from Liferay 完成了所有步骤。与您的情况唯一不同的是我使用的是 Liferay CE。