Weblogic 11g: Managed Server is not starting from Weblogic console

南楼画角 提交于 2019-12-12 04:46:25

问题


i have some strange situation:

When i am trying to start managed server on the console i get the following error on Nodemanager:

PM weblogic.nodemanager.server.Handler run
WARNING: I/O error while closing socket connection
java.net.SocketException: Connection reset
        at java.net.SocketInputStream.read(SocketInputStream.java:135)
        at java.net.SocketInputStream.read(SocketInputStream.java:122)
        at weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:159)
        at weblogic.security.SSL.jsseadapter.JaSSLEngineRunner$Context.fillBufferNetIn(JaSSLEngineRunner.java:323)
        at weblogic.security.SSL.jsseadapter.JaSSLEngineRunner$Transition_NeedUnwrap.getNextState(JaSSLEngineRunner.java:822)
        at weblogic.security.SSL.jsseadapter.JaSSLEngineRunner.doTransitions(JaSSLEngineRunner.java:763)
        at weblogic.security.SSL.jsseadapter.JaSSLEngineRunner.closeInbound(JaSSLEngineRunner.java:1279)
        at weblogic.security.SSL.jsseadapter.JaSSLEngineRunner.close(JaSSLEngineRunner.java:1365)
        at weblogic.security.SSL.jsseadapter.JaAbstractSSLSocket.close(JaAbstractSSLSocket.java:245)
        at weblogic.nodemanager.server.Handler.run(Handler.java:85)
        at java.lang.Thread.run(Thread.java:745)

But when i am trying to start Managed Servers from command-line then it works correctly:

nohup ./startManagedWebLogic.sh server1 t3://xx.xx.xx.xx:7001 >/dev/null 2>&1 &

In oracle Documentation i found that this issue can happen when in nodemanager.properties file the following line is set to false:

NativeVersionEnabled=false

After i set it to true the issue is still persists. The issue started after i did an Upgrade for Java from java jrockit to java JDK 1.80. I have also changed the certificates from Demo to custom.

Did someone had this issue before and knows how to fix it?


回答1:


In the nodemanager.properties file set the SecureListener attribute to false. In the weblogic server admin console, configure the machine to not use a secured connection with the node manager (Node Manager tab) These 2 options configure a non secured connection between the admin server and the node manager.



来源:https://stackoverflow.com/questions/44907484/weblogic-11g-managed-server-is-not-starting-from-weblogic-console

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!