[JBoss JIRA] Created: (MODCLUSTER-117) ERROR [DefaultMCMPHandler] Error [null: null: {4}] sending command INFO to proxy 152.168.15.130:7777, configuration will be reset error when using MOD_CLUSTER 1.0.2 GA with JBOSS 5.0.0
by Rajah Harris (JIRA)
ERROR [DefaultMCMPHandler] Error [null: null: {4}] sending command INFO to proxy 152.168.15.130:7777, configuration will be reset error when using MOD_CLUSTER 1.0.2 GA with JBOSS 5.0.0
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Key: MODCLUSTER-117
URL: https://jira.jboss.org/jira/browse/MODCLUSTER-117
Project: mod_cluster
Issue Type: Bug
Affects Versions: 1.0.2.GA
Environment: Windows, JBOSS 5.0.0
Reporter: Rajah Harris
Assignee: Jean-Frederic Clere
Priority: Critical
Fix For: 1.0.2.GA
Hello, i'm testing mod_cluster 1.0.2 GA with JBoss 5.0.0 GA in a windows environment for testing purposes and i'm recieving this error:
16:24:21,906 ERROR [DefaultMCMPHandler] Error [null: null: {4}] sending command INFO to proxy 152.168.15.130:7777, configuration will be reset error
I saw a listing in JIRA that ya'll set up for this, https://jira.jboss.org/jira/browse/MODCLUSTER-61, saying that it only happens in a windows environment but that was in an ealier version of Mod_Cluster. I'm looking to see what i can do to avoid that error. Because it is effecting my testing as it seems to recognize the node in the manager, but the jboss default site/location isn't proxied correctly through the mod_cluster.
Oh yeah, i and i'm using the AJP connector as well.
The Mod_cluster corresponding error message in the log is "[Wed Dec 23 13:32:57 2009] [error] [client 152.168.15.130] client denied by server configuration: C:/
"
Any input would be much appreciated, thank you.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 12 months
[JBoss JIRA] Created: (MODCLUSTER-116) Microcontainer does not always choose the right constructor when creating ModClusterService
by Paul Ferraro (JIRA)
Microcontainer does not always choose the right constructor when creating ModClusterService
-------------------------------------------------------------------------------------------
Key: MODCLUSTER-116
URL: https://jira.jboss.org/jira/browse/MODCLUSTER-116
Project: mod_cluster
Issue Type: Bug
Affects Versions: 1.1.0.Beta1
Reporter: Paul Ferraro
Assignee: Paul Ferraro
Fix For: 1.1.0.CR1
A user encountered the following error when attempting to start EAP 5.0.0 w/mod_cluster 1.1.0.Beta1:
09:25:15,078 ERROR [AbstractKernelController] Error installing to Instantiated: name=ModClusterService state=Described mode=On Demand requiredState=Installed
java.lang.IllegalArgumentException: Wrong arguments. new for target java.lang.reflect.Constructor expected=[org.jboss.modcluster.config.ModClusterConfig, org.jboss.modcluster.load.LoadBalanceFactorProviderFactory] actual=[org.jboss.modcluster.config.ha.HAModClusterConfig, org.jboss.modcluster.load.impl.DynamicLoadBalanceFactorProvider]
at org.jboss.reflect.plugins.introspection.ReflectionUtils.handleErrors(ReflectionUtils.java:395)
The microcontainer is trying to instantiate ModClusterService using the wrong constructor. The mod_cluster-jboss-beans.xml should be updated to explicitly define the parameter types to remove this ambiguity.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years
[JBoss JIRA] Created: (MODCLUSTER-110) Split ModClusterServiceMBean.ping(String) into 3 methods
by Paul Ferraro (JIRA)
Split ModClusterServiceMBean.ping(String) into 3 methods
--------------------------------------------------------
Key: MODCLUSTER-110
URL: https://jira.jboss.org/jira/browse/MODCLUSTER-110
Project: mod_cluster
Issue Type: Feature Request
Reporter: Paul Ferraro
Assignee: Jean-Frederic Clere
Fix For: 1.1.0.CR1
Currently the ModClusterServiceMBean.ping(String) method does 3 things:
1. If parameter is null, send a PING command that determines the accessibility/health of each proxy.
2. If parameter is not a url, interpret the parameter as a jvm route and send a PING command that determines the accessibility of the node, configured with the specified jvm route, from each proxy.
3. If parameter is as a url, interpret the parameter as a url and send a PING command that determines the accessibility of the node (which may or may not be configured in the proxy already) containing a connector matching the protocol, host, and port of the url, from each proxy .
Rather than 1 multi-purpose function - this method should be split in to 3, corresponding to the 3 functions identified above:
Map<InetSocketAddress, String> ping();
Map<InetSocketAddress, String> ping(String jvmRoute);
Map<InetSocketAddress, String> ping(String protocol, String host, int port);
or perhaps:
Map<InetSocketAddress, String> pingProxies();
Map<InetSocketAddress, String> pingNode(String jvmRoute);
Map<InetSocketAddress, String> pingConector(String url);
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years