This content has been marked as final.
Show 6 replies
-
1. Re: Admin Server always tries to interact with managed server
René van Wijk Dec 22, 2011 9:57 AM (in response to 904803)When you want to show the server information and have a few managed servers in your environment with having the node manager
you can experience some slowness in the showing of the screen. -
2. Re: Admin Server always tries to interact with managed server
904803 Dec 22, 2011 2:12 PM (in response to René van Wijk)From the initial login page to the home page took almost 10 mins. and then took another 10 minutes when i click on the severs page? -
3. Re: Admin Server always tries to interact with managed server
Sascha Dec 22, 2011 7:01 PM (in response to 904803)Hi,
do you run your Weblogics in an virtual enviroment like VMWARE ? Do you use SSL ?
Regards -
4. Re: Admin Server always tries to interact with managed server
904803 Dec 27, 2011 7:02 PM (in response to Sascha)No. Not on VMWARE or SSL -
5. Re: Admin Server always tries to interact with managed server
976330 Jan 29, 2013 7:30 PM (in response to 904803)Did you find any solution for this issue? I am also facing the same issue. -
6. Re: Admin Server always tries to interact with managed server
Kishore Rout Jan 30, 2013 5:52 AM (in response to 976330)Hi,
This issue happens because of the UNICAST Cluster Messaging order.
To resolve this issue, set the message order enabled property. The property, MessageOrderingEnabled, belongs to the ClusterMBean. This property forces Unicast messages to be processed in strict order. By default, this property is not enabled. To enable the property, add the following line to the <cluster> element in $DOMAIN_HOME/config/config.xml:
<message-ordering-enabled>true</message-ordering-enabled>
The following snippet of config.xml shows this property setting.
<cluster>
<name>ClusterUnicast</name>
<cluster-messaging-mode>unicast</cluster-messaging-mode>
<message-ordering-enabled>true</message-ordering-enabled>
</cluster>
Mark if this helps.
Regards,
Kishore