Weblogic 12.2.1升级域reconfigure.sh。

时间:2015-11-16 21:53:01

标签: weblogic12c

我需要从12.1.3将weblogic域升级到12.2.1。我尝试使用reconfigure.sh weblogic实用程序。使用该实用程序时,我得到以下异常。旧域名来自weblogic 12.1.3。有线索吗?

Exception in thread "Thread-4" java.lang.IllegalArgumentException: Invalid host:port
        at com.oracle.cie.domain.jdbc.AddressList$HostPort.<init>(AddressList.java:133)
        at com.oracle.cie.domain.jdbc.AddressList.setList(AddressList.java:78)
        at com.oracle.cie.domain.jdbc.GridLinkRacHandler.createOnsHost(G

1 个答案:

答案 0 :(得分:0)

我有同样的错误。在我的情况下,这是因为在域中配置了自定义DataSource,特别是配置为没有ONS配置的GridLink的数据源。 正如我解决的那样,首先我对config.xml文件进行了备份,然后删除了所有自定义数据源引用,如下所示:

  <jdbc-system-resource>
    <name>mds-soa</name>
    <target>soa_cluster,AdminServer</target>
    <descriptor-file-name>jdbc/mds-soa-jdbc.xml</descriptor-file-name>
  </jdbc-system-resource>
<!--jdbc-system-resource>
    <name>OrchDS</name>
    <target>jms_cluster</target>
    <descriptor-file-name>jdbc/OrchDS-1529-jdbc.xml</descriptor-file-name>
  </jdbc-system-resource--> 

请注意,重新配置域时,config.ml文件中的所有注释都已删除。 然后启动向导以重新配置域,直到设置进度窗口,只是为了确保您通过所有验证然后退出。 逐个添加,直到找到有错误的描述符文件。 我希望这能帮到你。