How can I check the version of a Liferay instance?

前端 未结 7 829
时光取名叫无心
时光取名叫无心 2020-12-29 23:13

I have several instances of Liferay Portal (bundled with Apache Tomcat 5.5.x/6.x) and I need to know how to check the version of those Liferay instances

相关标签:
7条回答
  • 2020-12-29 23:27

    You can also check Liferay version Using Chrome Web tools

    0 讨论(0)
  • 2020-12-29 23:29

    In plugins->build.properties.At bottom line of tht file ,we have a property called lp.version which contains liferay version as lp.version=6.0.5

    Hope it helps!!

    0 讨论(0)
  • 2020-12-29 23:30

    As an administrator, go to:

    Control Panel -> Configuration -> Server Administration

    The version is in the information banner at the top of the "Resources" tab.

    0 讨论(0)
  • 2020-12-29 23:37

    Look at class com.liferay.portal.kernel.util.ReleaseInfo located in tomcat/common/lib/portal-kernel.jar. There is a bunch of static methods for this purpose. You will find the following property: static String version.

    0 讨论(0)
  • 2020-12-29 23:37

    In the enterprise edition, in addition to the installed package (Dima's answer) you can update Liferay using service packs. Here is how to know what service pack level you have installed:

    cd $LIFERAY/patching-tool
    ./patching-tool.sh info
    

    It will show something like this:

    Loading product and patch information...
    Product information:
      * installation type: binary
      * build number: 7010
      * service pack version:
        - available SP version: 5
        - installable SP version: 5
      * patching-tool version: 2.0.6
      * time: 2018-01-31 08:37Z
      * plugins: Demo 201802, Space 1-2 Columns 50/50 Limited, Space 50/50 Width Limited, Space Program, Space Program Theme
    
    Currently installed patches: de-30-7010
    
    Available patches: de-22-7010, de-30-7010
    
    Detailed patch list: 
      [ -] de-22-7010 :: Currently not installed; Won't be installed: de-30 contains the fixes included in this one :: Built for LIFERAY
      [*I] de-30-7010 :: Installed; Will be installed. :: Built for LIFERAY
    

    The important line is Currently installed patches: de-30-7010.
    Then you know that you have Service Pack 30.

    0 讨论(0)
  • 2020-12-29 23:39

    If you can get the database, which is one:

    select * from Release_;
    

    there is a column called buildNumber, it can have a value like 6005 or 5203

    The other way, with the apache tomcat startup, you will see in the catalina.out log file: Starting Liferay Portal Community Edition 6.0.5 CE (Bunyan / Build 6005 / August 16, 2010)

    0 讨论(0)
提交回复
热议问题