WebSphere WAS Express 从 8.5.5.4 升级到 8.5.5.10

WebSphere WAS Express upgrade from 8.5.5.4 to 8.5.5.10

我目前有

IBM WebSphere Application Server - Express - 8.5.5.4
package - com.ibm.websphere.EXPRESS.v85_8.5.5004.20141119_1746

我想从 8.5.5.4 升级到 8.5.5.10

在此过程中,我发现我需要至少安装 8.5.5.5 才能升级到 8.5.5.10(不是 100% 确定这是否正确)

我尝试升级到 8.5.5.5 并收到以下错误

 root@CI-TEST-POC AppServer# aal-imcl install com.ibm.websphere.EXPRESS.v85_8.5.5005.20150220_0158 -dataLocation  /var/ibm/InstallationManager/ -repositories http://devci-adrepo.corp.aal.au/ci/im-repo -installationDirectory /opt/IBM/WebSphere/AppServer  -acceptLicense
Repo in use [http://devci-adrepo.corp.aal.au/ci/im-repo]
ERROR: Problems were found with the set of packages and fixes.
  ERROR: Problems were found with the packages and fixes in package group IBM WebSphere Application Server V8.5.
    ERROR: You cannot uninstall the IBM WebSphere Application Server - Express fix which is superseded by the installed package 8.5.5.3-WS-WASProd-IFPI55697.
root@CI-TEST-POC AppServer#

有人可以告诉我我缺少什么或者使用 aal-imcl 升级到 8.5.5.10 的过程是什么吗?

您似乎有 8.5.5.3-WS-WASProd-IFPI55697,可能需要先将其卸载。

您可以先使用 listInstalledPackages 命令检查当前安装的内容:

imcl listInstalledPackages -installationDirectory /opt/IBM/WebSphere/AppServer

之后,尝试使用 imcl 卸载 8.5.5.3-WS-WASProd-IFPI55697:

imcl uninstall 8.5.5.3-WS-WASProd-IFPI55697 -installationDirectory /opt/IBM/WebSphere/AppServer

然后您可以重试该命令以将您的 8.5.5.4 更新到更新的级别。

(如果在执行上述操作后仍有问题,请联系 IBM 支持。)

只要您在某个存储库中有 8.5.5.10 修复包,就可以直接从 8.5.5.4 更新到 8.5.5.10。

另请注意,aal-imcl 不是 IBM Installation Manager 的标准部分——有包装器吗? -- imcl 是 IBM Installation Manager 附带的。您可能还想确保您的 Installation Manager 也是最新的。可用的最新版本是 1.8.5。

希望这些帮助。