查看weblogic版本号

向右看齐 2022-08-05 01:30 661阅读 0赞
  1. weblogic上部署的项目,在迁移的时候,通常必须迁移到相同版本的weblogic容器上面去,那怎么看当前weblogic的版本号呢?两个方法:***第一,查看weblogic的安装日志,里面包含版本号***;***第二,查看weblogic主目录下面的registry.xml文件,里面包含版本号***。

安装日志

weblogic的安装日志log.txt 一般在weblogic安装目录的根目录下面的logs文件夹下面

里面内容比较少,主要包含weblogic安装时安装的组件和中间件等,每个组件都有对应的版本号

  1. 2015-5-30 8:39:37 -- install "WebLogic Platform" 10.3.5.0 D:\Oracle\Middleware\Oracle11g_Home
  2. 发行版 10.3.5.0 [已添加]
  3. |_____Common Infrastructure Engineering 7.2.0.0 [已添加]
  4. | |_____Uninstall [已添加]
  5. | |_____Patch Client [已添加]
  6. | |_____Patch Attachment Facility [已添加]
  7. | |_____Clone Facility [已添加]
  8. |_____WebLogic Server 10.3.5.0 [已添加]
  9. | |_____Core Application Server [已添加]
  10. | |_____Administration Console [已添加]
  11. | |_____Configuration Wizard and Upgrade Framework [已添加]
  12. | |_____Web 2.0 HTTP Pub-Sub Server [已添加]
  13. | |_____WebLogic SCA [已添加]
  14. | |_____WebLogic JDBC Drivers [已添加]
  15. | |_____Third Party JDBC Drivers [已添加]
  16. | |_____WebLogic Server Clients [已添加]
  17. | |_____WebLogic Web Server Plugins [已添加]
  18. | |_____UDDI and Xquery Support [已添加]
  19. | |_____Server Examples [未安装]
  20. | |_____Evaluation Database [已添加]
  21. | |_____Workshop Code Completion Support [已添加]
  22. |_____Oracle Configuration Manager 10.3.3.1 [已添加]
  23. | |_____Data Collector [已添加]
  24. |_____Oracle Coherence 3.6.0.4 [已添加]
  25. |_____Coherence Product Files [已添加]
  26. |_____Coherence Examples [未安装]

如上面的安装日志主要包含下面的内容

该weblogic安装于 2015-5-30 8:39:37,安装的weblogic 平台为 10.3.5.0,安装在了 D:\Oracle\Middleware\Oracle11g_Home 目录下

包含了四个大的组件:

版本号为 7.2.0.0 的 Common Infrastructure Engineering

版本号为 10.3.5.0 的 WebLogic Server

版本号为 10.3.3.1 的 Oracle Configuration Manager

版本号为 3.6.0.4 的 Oracle Coherence

各组件后面的子组件,也标注了是否已安装。

registry.xml

registry.xml里面和安装日志里面是类似的内容

  1. <?xml version="1.0" encoding="UTF-8"?><bea-product-information xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:gpr="http://www.bea.com/ns/cie/gpr">
  2. <host home="D:\Oracle\Middleware\Oracle11g_Home" name="ZhangQi-PC">
  3. <product format="1.0" name="WebLogic Platform">
  4. <release level="10.3" ServicePackLevel="5" PatchLevel="0" Status="installed" BeaProgramGroup="Oracle WebLogic (BEAHOME 2)" StartMenu="C:\ProgramData\Microsoft\Windows\Start Menu\Programs" InstallTime="2015-5-30 8:39:37" InstallDir="D:\Oracle\Middleware\Oracle11g_Home">
  5. <component name="Common Infrastructure Engineering" version="7.2.0.0" InstallDir="">
  6. <component name="Uninstall"/>
  7. <component name="Patch Client"/>
  8. <component name="Patch Attachment Facility"/>
  9. <component name="Clone Facility"/>
  10. </component>
  11. <component name="WebLogic Server" version="10.3.5.0" InstallDir="D:\Oracle\Middleware\Oracle11g_Home\wlserver_10.3">
  12. <component name="Core Application Server"/>
  13. <component name="Administration Console"/>
  14. <component name="Configuration Wizard and Upgrade Framework"/>
  15. <component name="Web 2.0 HTTP Pub-Sub Server"/>
  16. <component name="WebLogic SCA"/>
  17. <component name="WebLogic JDBC Drivers"/>
  18. <component name="Third Party JDBC Drivers"/>
  19. <component name="WebLogic Server Clients"/>
  20. <component name="WebLogic Web Server Plugins"/>
  21. <component name="UDDI and Xquery Support"/>
  22. <component name="Evaluation Database"/>
  23. <component name="Workshop Code Completion Support"/>
  24. </component>
  25. <component name="Oracle Configuration Manager" version="10.3.3.1" InstallDir="">
  26. <component name="Data Collector"/>
  27. </component>
  28. <component name="Oracle Coherence" version="3.6.0.4" InstallDir="D:\Oracle\Middleware\Oracle11g_Home\coherence_3.6">
  29. <component name="Coherence Product Files"/>
  30. </component>
  31. </release>
  32. </product>
  33. </host>
  34. </bea-product-information>

跟安装日志里面的信息完全的对应吧。

上面讲的就是查看weblogic版本号的两种方法,第二种方法,通过查看registry.xml 更通用些,它就在weblogic的根目录下面。

发表评论

表情:
评论列表 (有 0 条评论,661人围观)

还没有评论,来说两句吧...

相关阅读

    相关 查看weblogic版本

        在weblogic上部署的项目,在迁移的时候,通常必须迁移到相同版本的weblogic容器上面去,那怎么看当前weblogic的版本号呢?两个方法:第一,查看