Sie sind auf Seite 1von 2

WEBLOGIC SERVER FORCE SHUTDOWN ISSUE

The Error caused while starting the Weblogic Server is shown below:

Cause of the Error:
The reason why the deployment of JMS resources failed was that the sub-deployment that was
being targeted to the managed server had some JMS resources which are pinned services. The
managed server in question had more than one JMS servers associated with it; by design the
JMS destinations (like queues and topics) can be targeted to only one JMS server instance and
not multiple. When the sub-deployment is targeted to the managed server, WLS would attempt
to target a single JMS destination to all the JMS servers hosted on that Managed Server, hence
failing with the above error.
Solution for the Issue:
Follow the below procedure for solving the issue.
Go the path D:\Oracle\Middleware\user_projects\domains\EPMSystem\config
Locate the Config.xml file and open it with notepad.
<sub-deployment>
<name>JRFWS_JMS_MODULE_SUBDEPLOYMENT_JRFWSJMSServer</name>
<target>FMWebServices</target>
</sub-deployment>


Replace the above Tags with the following
<sub-deployment>
<name>JRFWS_JMS_MODULE_SUBDEPLOYMENT_JRFWSJMSServer</name>
<target>JRFWSAsyncJmsServer</target>
</sub-deployment>
Now try Restarting the Weblogic Server by going to path
Startup menu->All Programs->Oracle Weblogic->User Project->EPM System->Start Weblogic for
Admin server and click on it
Now we can see that Weblogic server is running successfully.

Das könnte Ihnen auch gefallen