各子节点不能启动,查看日志,报错如下:
Unable to establish JMX Connectivity with the Adminstration Server AdminServer at service:jmx:t3://192.168.122.1:7001/jndi/weblogic.management.mbeanservers.domainruntime 。。。。。 Caused By: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://192.168.122.1:7001: Destination unreachable; nested exception is: java.net.ConnectException: Connection refused; No available router to destination] at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:40) at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:787) at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:368) at weblogic.jndi.Environment.getContext(Environment.java:315) at weblogic.jndi.Environment.getContext(Environment.java:285) Truncated. see log file for complete stacktrace
原因分析:
AdminServer服务器的IP是10.142.145.18,但报错信息里的IP是192.168.122.1,ifconfig查看后发现此服务器里有一个虚拟网卡virbr0,他的IP地址正是192.168.122.1。
为什么会产生以上报错呢?
原因是在创建Weblogic域的时候,在经过以下步骤时,有个选项是Listen address,之前搭建过的集群服务器都只有一个IP,一直没在意这个选项,如果服务器有多个IP,就得指定一个IP,否则会导致weblogic子节点不能正常启动。
输入管理服务器配置。每个 WebLogic Server 域都必须有一个管理服务器。 该管理服务器中承载管理控制台, 该控制台用于执行管理任务。
| Name | Value |
_|__________________|_____________________|
1| *Name: | AdminServer |
2| *Listen address: | All Local Addresses |
3| Listen port: | 7001 |
4| SSL listen port: | N/A |
5| SSL enabled: | false |
使用以上值或选择另一选项:
1 - 修改 "Name"
2 - 修改 "Listen address"
3 - 修改 "Listen port"
4 - 修改 "SSL enabled"
解决办法:删掉AdminServer服务器上的domains,然后重新创建,再同步至其它子节点,问题解决。