All, feel free to use the new setup at staging.ofbiz.org on the staging server - staging1 and staging2 are sitting behind an Apache load balancer. If Sam can help on that as well - it'll be helpful so that we can duplicate what's going on for him.
Cheers, Tim -- Tim Ruppert HotWax Media http://www.hotwaxmedia.com o:801.649.6594 f:801.649.6595 ----- "Sam Hamilton" <[email protected]> wrote: > Thanks for the patches - end of the day here now so will let you all > know > tomorrow > > Thanks > Sam > > > On 25/05/2009 18:29, "Jacopo Cappellato" > <[email protected]> > wrote: > > > Yes, > > > > let's wait for Sam's feedback, but I am pretty sure that your work > > will fix that part. > > I don't know if Sam's log was generated using the code with the > call > > to setManagerTemplate (I guess so) instead of registerManager; > however > > I have the feeling that setManagerTemplate is not the right way to > > go... but let's see what happens. > > > > Cheers > > Jacopo > > > > On May 25, 2009, at 12:22 PM, Scott Gray wrote: > > > >> Hi Jacopo > >> > >> That warning from Sam's log is generated during a call to > >> registerManager which seems to occur within Tomcat as each webapp > is > >> loaded. I'm not to sure of the significance of a Manager when > >> SimpleTcpCluster is being set up (but then I'm really not to sure > >> about anything to do with clustering :-). > >> > >> Regards > >> Scott > >> > >> On 25/05/2009, at 10:15 PM, Jacopo Cappellato wrote: > >> > >>> Scott, > >>> > >>> thank you, this is definitely a big step forward; I am looking at > >>> Sam's test on it. In the meantime I have integrated your work > with > >>> mine. > >>> > >>> However I still think that calling: > >>> > >>> cluster > >>> > .setManagerTemplate((org.apache.catalina.ha.ClusterManager)manager); > >>> > >>> is not the right way to go; also, after further research, I don't > >>> think that: > >>> > >>> cluster.registerManager(manager); > >>> > >>> is correct too; a better option could be: > >>> > >>> host.setManager(manager); > >>> > >>> Unfortunately with this I still get a different error: > >>> > >>> java.lang.ClassCastException: > org.apache.catalina.core.StandardHost > >>> at org.apache.catalina.session.ManagerBase.init(ManagerBase.java: > >>> 708) > >>> at > >>> > org.apache.catalina.ha.session.DeltaManager.start(DeltaManager.java: > >>> 784) > >>> at > org.apache.catalina.core.ContainerBase.start(ContainerBase.java: > >>> 1033) > >>> at org.apache.catalina.core.StandardHost.start(StandardHost.java: > >>> 719) > >>> at > org.apache.catalina.core.ContainerBase.start(ContainerBase.java: > >>> 1045) > >>> at > >>> > org.apache.catalina.core.StandardEngine.start(StandardEngine.java: > >>> 443) > >>> at org.apache.catalina.startup.Embedded.start(Embedded.java:825) > >>> at > >>> org > >>> .ofbiz > >>> > .catalina.container.CatalinaContainer.start(CatalinaContainer.java: > >>> 224) > >>> at > >>> > org.ofbiz.base.container.ContainerLoader.start(ContainerLoader.java: > >>> 101) > >>> at org.ofbiz.base.start.Start.startStartLoaders(Start.java:271) > >>> at org.ofbiz.base.start.Start.startServer(Start.java:320) > >>> at org.ofbiz.base.start.Start.start(Start.java:324) > >>> at org.ofbiz.base.start.Start.main(Start.java:407) > >>> > >>> Jacopo > >>> > >>> On May 25, 2009, at 11:53 AM, Scott Gray wrote: > >>> > >>>> Sam, Jacopo > >>>> > >>>> Here's my attempt at fixing the warn message from the log, I > can't > >>>> test it locally but it looks worth a shot. > >>>> > >>>> Regards > >>>> Scott > >>>> > >>>> <cluster.patch> > >>>> > >>>> On 25/05/2009, at 9:47 PM, Jacopo Cappellato wrote: > >>>> > >>>>> Sam, > >>>>> > >>>>> thanks for your tests, they are really helping me. > >>>>> Frankly speaking, it is not a surprise to me that my last patch > >>>>> still doesn't fix the issue; however I think it is a step > forward > >>>>> in the right direction. > >>>>> At the moment, I think that in CatalinaContainer.java instead > of > >>>>> calling > >>>>> > >>>>> cluster > >>>>> .setManagerTemplate > >>>>> ((org.apache.catalina.ha.ClusterManager)manager); > >>>>> > >>>>> (like I did in the patch I sent you) > >>>>> > >>>>> we should call: > >>>>> > >>>>> cluster.registerManager(manager); > >>>>> > >>>>> Unfortunately, when I try this and I run OFBiz, I get the > >>>>> following error in the console: > >>>>> > >>>>> java.lang.NullPointerException > >>>>> at > >>>>> org > >>>>> .apache > >>>>> .catalina > >>>>> > .ha.tcp.SimpleTcpCluster.getManagerName(SimpleTcpCluster.java:561) > >>>>> at > >>>>> org > >>>>> .apache > >>>>> .catalina > >>>>> > .ha.tcp.SimpleTcpCluster.registerManager(SimpleTcpCluster.java:527) > >>>>> at > >>>>> org > >>>>> .ofbiz > >>>>> .catalina > >>>>> > .container.CatalinaContainer.createCluster(CatalinaContainer.java: > >>>>> 439) > >>>>> at > >>>>> org > >>>>> .ofbiz > >>>>> .catalina > >>>>> > .container.CatalinaContainer.createEngine(CatalinaContainer.java: > >>>>> 287) > >>>>> at > >>>>> org > >>>>> .ofbiz > >>>>> > .catalina.container.CatalinaContainer.init(CatalinaContainer.java: > >>>>> 198) > >>>>> at > >>>>> org > >>>>> .ofbiz > >>>>> .base > >>>>> > .container.ContainerLoader.loadContainer(ContainerLoader.java:190) > >>>>> at > >>>>> org > >>>>> > .ofbiz.base.container.ContainerLoader.load(ContainerLoader.java:66) > >>>>> at org.ofbiz.base.start.Start.initStartLoaders(Start.java:258) > >>>>> at org.ofbiz.base.start.Start.init(Start.java:97) > >>>>> at org.ofbiz.base.start.Start.main(Start.java:406) > >>>>> > >>>>> I am still reaserching how, with the new API, we can set the > >>>>> Manager for a given Cluster: until now, the only information I > >>>>> could find is how to do this using the Catalina xml config > >>>>> files... but this doesn't help much. > >>>>> > >>>>> I will continue my research from here, but any hint would be > >>>>> appreciated of course. > >>>>> > >>>>> Cheers, > >>>>> > >>>>> Jacopo > >>>>> > >>>>> > >>>>> On May 25, 2009, at 11:11 AM, Sam Hamilton wrote: > >>>>> > >>>>>> Hi Scott - you were right we had forgotten to set that but > still > >>>>>> no joy - > >>>>>> w log below: > >>>>>> > >>>>>> > >>>>>> 2009-05-25 16:56:34,803 (main) > >>>>>> [ CatalinaContainer.java57:INFO ] Catalina > >>>>>> Cluster [default-server-cluster] configured for host - 0.0.0.0 > >>>>>> 2009-05-25 16:56:35,668 (main) [ JkMain.java: > >>>>>> 251NFO ] Can't > >>>>>> find home, jk2.properties not loaded > >>>>>> 2009-05-25 16:56:35,671main) [ Http11Protocol.java:182:INFO > ] > >>>>>> Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080 > >>>>>> 2009-05-25 16:56:35,765 (main) [ SSLIm.java: > >>>>>> 49 :INFO ] SSLImpl > >>>>>> loaded; using custom ServerSocketFactory > >>>>>> 2009-05-25 16:56:36,048 (main) [ Http11Protocol.va:182:INFO > ] > >>>>>> Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443 > >>>>>> 2009-05- 16:56:36,051 (main) [ ContainerLoader.java:96 :INFO > ] > >>>>>> [Startup] Starting containers... > >>>>>> 2009-05-25 16:56:36,085 (main) [ VfsLojava: > >>>>>> 122:INFO ] Using > >>>>>> "/tmp/vfs_cache" as temporary files store. > >>>>>> 2009-5-25 16:56:36,313 (main) [ GenericDispatcher.java: > >>>>>> 61 :INFO ] Creating > >>>>>> new dispatcher [RMIDispatcher] (main) > >>>>>> 2009-05-25 16:56:40,121 (main) SimpleTcpCluster.java: > >>>>>> 520:WARN ] Manager > >>>>>> [ org.apache.catalina.sesion.standardmana...@6a4986c8] does > not > >>>>>> implement > >>>>>> ClusterManagr, addition to cluster has been aborted. > >>>>>> > >>>>>> > >>>>>> On 25/05/2009 16:36, "Scott Gray" <[email protected]> > >>>>>> wrote: > >>>>>> > >>>>>>> Hi Sam > >>>>>>> > >>>>>>> Just a stab in the dark, but have you set apps-distributable > to > >>>>>>> true > >>>>>>> in ofbiz-containers.xml? If not it may be worth a try. > >>>>>>> > >>>>>>> Regards > >>>>>>> Scott > >>>>>>> > >>>>>>> On 25/05/2009, at 7:35 PM, Sam Hamilton wrote: > >>>>>>> > >>>>>>>> We patched and it still didn't work error is slightly > >>>>>>>> different than > >>>>>>>> last time so I have pasted it below, we could only debug so > far > >>>>>>>> before we found that some of the log lines refer into the > >>>>>>>> tomcat-6.0.16.jar file. Perhaps an update to 6.0.18 might > fix > >>>>>>>> it, > >>>>>>>> but that's a totally sab in the dark, their change log does > show > >>>>>>>> some work in the cluster area ( > >>>>>>>> http://tomcat.apache.org/tomcat-6.0-doc/changelog.html > >>>>>>>> ) > >>>>>>>> > >>>>>>>> Thanks > >>>>>>>> Sam > >>>>>>>> > >>>>>>>> > >>>>>>>> 2009-05-25 10:44:15,291 (main) [ CatalinaContainer.java: > >>>>>>>> 458:INFO ] > >>>>>>>> Catalina Cluster [default-server-cluster] configured for host > - > >>>>>>>> 0.0.0.0 > >>>>>>>> 2009-05-25 10:44:16,203 (main) [ JkMain.java: > >>>>>>>> 251:INFO ] > >>>>>>>> Can't find home, jk2.properties not loaded > >>>>>>>> 2009-05-25 10:44:16,205 (main) [ Http11Protocol.java: > >>>>>>>> 182:INFO ] > >>>>>>>> Initializing Coyote HTTP/1.1 on http-0.0.0.0-8080 > >>>>>>>> 2009-05-25 10:44:16,260 (main) [ SSLImpl.java: > >>>>>>>> 49 :INFO ] > >>>>>>>> SSLImpl loaded; using custom ServerSocketFactory > >>>>>>>> 2009-05-25 10:44:16,337 (main) [ Http11Protocol.java: > >>>>>>>> 182:INFO ] > >>>>>>>> Initializing Coyote HTTP/1.1 on http-0.0.0.0-8443 > >>>>>>>> 2009-05-25 10:44:16,339 (main) [ ContainerLoader.java: > >>>>>>>> 96 :INFO ] > >>>>>>>> [Startup] Starting containers... > >>>>>>>> 2009-05-25 10:44:16,368 (main) [ VfsLog.java: > >>>>>>>> 122:INFO ] > >>>>>>>> Using "/tmp/vfs_cache" as temporary files store. > >>>>>>>> 2009-05-25 10:44:16,524 (main) [ GenericDispatcher.java: > >>>>>>>> 61 :INFO ] > >>>>>>>> Creating new dispatcher [RMIDispatcher] (main) > >>>>>>>> 2009-05-25 10:44:26,766 (main) [ SimpleTcpCluster.java: > >>>>>>>> 520:WARN ] > >>>>>>>> Manager > >>>>>>>> [ org.apache.catalina.session.standardmana...@6e03814d] does > >>>>>>>> not implement ClusterManager, addition to cluster has been > >>>>>>>> aborted. > >>>>>>>> > >>>>>>>> > >>>>>>>> On 23/05/2009 22:04, "Tim Ruppert" > <[email protected]> > >>>>>>>> wrote: > >>>>>>>> > >>>>>>>> Looks like we've got the initial setup complete at Contegix. > >>>>>>>> I will > >>>>>>>> be sending more information over as we find out more about > the > >>>>>>>> issues. Keep us in the loop on your side Sam. > >>>>>>>> > >>>>>>>> Cheers, > >>>>>>>> Tim > >>>>>>>> -- > >>>>>>>> Tim Ruppert > >>>>>>>> HotWax Media > >>>>>>>> http://www.hotwaxmedia.com > >>>>>>>> > >>>>>>>> o:801.649.6594 > >>>>>>>> f:801.649.6595 > >>>>>>>> > >>>>>>>> ----- "Sam Hamilton" <[email protected]> wrote: > >>>>>>>> > >>>>>>>>> Thanks Jacopo and Tim, > >>>>>>>>> > >>>>>>>>> I will be also getting my guys working on testing this > Monday > >>>>>>>>> but > >>>>>>>>> thanks > >>>>>>>>> for the patch! > >>>>>>>>> > >>>>>>>>> Sam > >>>>>>>>> > >>>>>>>>> > >>>>>>>>> Tim Ruppert wrote: > >>>>>>>>>> All, I'm going to go forward with setting up a couple of > >>>>>>>>>> instances > >>>>>>>>> on the server at Contegix for testing this out. It's hard > to > >>>>>>>>> test > >>>>>>>>> and > >>>>>>>>> see whether or not, we're helping out Sam without having > the > >>>>>>>>> proper > >>>>>>>>> environment setup, so I'll let you know when it's in place. > >>>>>>>>> Any > >>>>>>>>> committers who did not ask for access to that server the > last > >>>>>>>>> time > >>>>>>>>> (looks like currently Adrian, Hans, Jacques, Jacopo, Scott, > >>>>>>>>> David, > >>>>>>>>> Andrew, Anil, Vikas, Ashish and myself have access) - > please > >>>>>>>>> just let > >>>>>>>>> me know and I'll get it going for you. > >>>>>>>>>> > >>>>>>>>>> I'll keep you updated as to when this gets setup and more > of > >>>>>>>>>> the > >>>>>>>>> particulars - hopefully this'll help everyone rally around > >>>>>>>>> getting > >>>>>>>>> this fixed up. > >>>>>>>>>> > >>>>>>>>>> Cheers, > >>>>>>>>>> Tim > >>>>>>>>>> -- > >>>>>>>>>> Tim Ruppert > >>>>>>>>>> HotWax Media > >>>>>>>>>> http://www.hotwaxmedia.com > >>>>>>>>>> > >>>>>>>>>> o:801.649.6594 > >>>>>>>>>> f:801.649.6595 > >>>>>>>>>> > >>>>>>>>>> ----- "Jacopo Cappellato" > <[email protected]> > >>>>>>>>> wrote: > >>>>>>>>>> > >>>>>>>>>> > >>>>>>>>>>> Sam, > >>>>>>>>>>> > >>>>>>>>>>> unfortunately I don't know much about setting up clusters > in > >>>>>>>>> Catalina; > >>>>>>>>>>> > >>>>>>>>>>> at that time I just helped to migrate the API to the new > >>>>>>>>>>> version. > >>>>>>>>>>> However I am happy to help as much as I can. > >>>>>>>>>>> The main issue right now is that I don't have a test > >>>>>>>>>>> environment to > >>>>>>>>> > >>>>>>>>>>> test the cluster, but I did some research and limited > tests > >>>>>>>>>>> in the > >>>>>>>>> > >>>>>>>>>>> attempt to fix the first error in your log: > >>>>>>>>>>> > >>>>>>>>>>> "setManagerClassName is deprecated, use nested <Manager> > >>>>>>>>>>> element > >>>>>>>>>>> inside the <Cluster> element instead, this request will > be > >>>>>>>>> ignored." > >>>>>>>>>>> > >>>>>>>>>>> I am pretty sure it is the root of all evils. > >>>>>>>>>>> > >>>>>>>>>>> That said, could you please try to apply the following > >>>>>>>>>>> patch and > >>>>>>>>> see > >>>>>>>>>>> > >>>>>>>>>>> what happens? > >>>>>>>>>>> > >>>>>>>>>>> Thank you, > >>>>>>>>>>> > >>>>>>>>>>> Jacopo > >>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>>>> Index: framework/base/config/ofbiz-containers.xml > >>>>>>>>>>> > >>>>>>>>> = > >>>>>>>>> = > >>>>>>>>> = > >>>>>>>>> = > >>>>>>>>> > =============================================================== > >>>>>>>>>>> --- framework/base/config/ofbiz-containers.xml > (revision > >>>>>>>>>>> 777112) > >>>>>>>>>>> +++ framework/base/config/ofbiz-containers.xml > (working > >>>>>>>>>>> copy) > >>>>>>>>>>> @@ -116,12 +116,12 @@ > >>>>>>>>>>> <property name="access-log-prefix" > >>>>>>>>>>> value="access_log."/> > >>>>>>>>>>> <property name="access-log-dir" > >>>>>>>>> value="runtime/logs"/> > >>>>>>>>>>> <property name="enable-request-dump" > value="false"/> > >>>>>>>>>>> - <!-- uncomment for cluster support > >>>>>>>>>>> + <!-- uncomment for cluster support --> > >>>>>>>>>>> <property name="default-server-cluster" > >>>>>>>>>>> value="cluster"> > >>>>>>>>>>> <property name="rep-valve-filter"> > >>>>>>>>>>> > >>>>>>>>>>> <property-value>.*\.gif;.*\.js;.*\.jpg;.*\.htm;.* > >>>>>>>>>>> \.html;.*\.txt;</property-value> > >>>>>>>>>>> </property> > >>>>>>>>>>> - <property name="manager-class" > >>>>>>>>>>> > value="org.apache.catalina.cluster.session.DeltaManager"/> > >>>>>>>>>>> + <property name="manager-class" > >>>>>>>>>>> value="org.apache.catalina.ha.session.DeltaManager"/> > >>>>>>>>>>> <property name="debug" value="5"/> > >>>>>>>>>>> <property name="replication-mode" > >>>>>>>>>>> > >>>>>>>>> value > >>>>>>>>> > ="org.apache.catalina.tribes.transport.bio.PooledMultiSender"/> > >>>>>>>>>>> <property name="tcp-listen-host" > value="auto"/> > >>>>>>>>>>> @@ -129,12 +129,12 @@ > >>>>>>>>>>> <property name="tcp-sector-timeout" > >>>>>>>>> value="100"/> > >>>>>>>>>>> <property name="tcp-thread-count" value="6"/> > >>>>>>>>>>> <property name="mcast-bind-addr" > >>>>>>>>>>> value="192.168.2.1"/> > >>>>>>>>>>> - <property name="mcast-addr" > >>>>>>>>>>> value="224.0.0.1"/> > >>>>>>>>>>> + <property name="mcast-addr" > >>>>>>>>>>> value="228.0.0.4"/> > >>>>>>>>>>> <property name="mcast-port" value="45564"/> > >>>>>>>>>>> <property name="mcast-freq" value="500"/> > >>>>>>>>>>> <property name="mcast-drop-time" > value="3000"/> > >>>>>>>>>>> </property> > >>>>>>>>>>> - --> > >>>>>>>>>>> + <!-- --> > >>>>>>>>>>> <!-- <property name="ssl-accelerator-port" > >>>>>>>>> value="8443"/ > >>>>>>>>>>> > >>>>>>>>>>>> --> > >>>>>>>>>>> <property name="enable-cross-subdomain-sessions" > >>>>>>>>>>> value="true"/> > >>>>>>>>>>> </property> > >>>>>>>>>>> Index: > framework/catalina/src/org/ofbiz/catalina/container/ > >>>>>>>>>>> CatalinaContainer.java > >>>>>>>>>>> > >>>>>>>>> = > >>>>>>>>> = > >>>>>>>>> = > >>>>>>>>> = > >>>>>>>>> > =============================================================== > >>>>>>>>>>> --- framework/catalina/src/org/ofbiz/catalina/container/ > >>>>>>>>>>> CatalinaContainer.java (revision 777112) > >>>>>>>>>>> +++ framework/catalina/src/org/ofbiz/catalina/container/ > >>>>>>>>>>> CatalinaContainer.java (working copy) > >>>>>>>>>>> @@ -429,7 +429,15 @@ > >>>>>>>>>>> > >>>>>>>>>>> SimpleTcpCluster cluster = new SimpleTcpCluster(); > >>>>>>>>>>> cluster.setClusterName(clusterProps.name); > >>>>>>>>>>> - cluster.setManagerClassName(mgrClassName); > >>>>>>>>>>> + Manager manager = null; > >>>>>>>>>>> + try { > >>>>>>>>>>> + manager = > >>>>>>>>>>> (Manager)Class.forName(mgrClassName).newInstance(); > >>>>>>>>>>> + } catch(Exception exc) { > >>>>>>>>>>> + throw new ContainerException("Cluster > >>>>>>>>>>> configuration > >>>>>>>>>>> requires a valid manager-class property: " + > >>>>>>>>>>> exc.getMessage()); > >>>>>>>>>>> + } > >>>>>>>>>>> + //cluster.setManagerClassName(mgrClassName); > >>>>>>>>>>> + //cluster.registerManager(manager); > >>>>>>>>>>> + > >>>>>>>>>>> cluster > >>>>>>>>>>> > >>>>>>>>> .setManagerTemplate > >>>>>>>>> ((org.apache.catalina.ha.ClusterManager)manager); > >>>>>>>>>>> //cluster.setDebug(debug); > >>>>>>>>>>> // removed since 5.5.9? > >>>>>>>>>>> cluster.setExpireSessionsOnShutdown(expireSession); > >>>>>>>>>>> // removed since 5.5.9? > >>>>>>>>> cluster.setUseDirtyFlag(useDirty); > >>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>>>> On May 22, 2009, at 2:49 AM, Tim Ruppert wrote: > >>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>>>>> I know that when the upgrade from Tomcat 5.5 to Tomcat 6 > >>>>>>>>>>>> that > >>>>>>>>> there > >>>>>>>>>>>> > >>>>>>>>>>>> were a number of issues that Jacopo had to work thru to > >>>>>>>>>>>> get it > >>>>>>>>>>>> running. My guess is that this is not something that > was > >>>>>>>>>>>> tested > >>>>>>>>> > >>>>>>>>>>>> during the upgrade process. Seems like you're in the > beta > >>>>>>>>>>>> tester > >>>>>>>>> > >>>>>>>>>>>> here Sam :) Sorry I don't have more information right > at > >>>>>>>>>>>> the > >>>>>>>>>>>> > >>>>>>>>>>> moment. > >>>>>>>>>>> > >>>>>>>>>>>> Cheers, > >>>>>>>>>>>> Tim > >>>>>>>>>>>> -- > >>>>>>>>>>>> Tim Ruppert > >>>>>>>>>>>> HotWax Media > >>>>>>>>>>>> http://www.hotwaxmedia.com > >>>>>>>>>>>> > >>>>>>>>>>>> o:801.649.6594 > >>>>>>>>>>>> f:801.649.6595 > >>>>>>>>>>>> > >>>>>>>>>>>> ----- "Sam Hamilton" <[email protected]> > >>>>>>>>>>>> wrote: > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>>> Hi Dev list - I am moving this over as no one is > replying > >>>>>>>>>>>> on the > >>>>>>>>>>>> > >>>>>>>>>>> user > >>>>>>>>>>> > >>>>>>>>>>>> list, there is a problem with the OOTB clustering in > >>>>>>>>>>>> trunk OFBiz > >>>>>>>>> - > >>>>>>>>>>>> > >>>>>>>>>>> it > >>>>>>>>>>> > >>>>>>>>>>>> just does not work. > >>>>>>>>>>>> > >>>>>>>>>>>> Cheers > >>>>>>>>>>>> Sam > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>>> On 20/05/2009 06:42, "Sam Hamilton" > >>>>>>>>>>>> > >>>>>>>>>>> <[email protected]> > >>>>>>>>>>> > >>>>>>>>>>>> wrote: > >>>>>>>>>>>> > >>>>>>>>>>>> Please excuse the bump but is no one running clustered > >>>>>>>>>>>> OFBiz out > >>>>>>>>>>>> there? > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>>> On 18/05/2009 12:46, "Sam Hamilton" > >>>>>>>>>>>> > >>>>>>>>>>> <[email protected]> > >>>>>>>>>>> > >>>>>>>>>>>> wrote: > >>>>>>>>>>>> > >>>>>>>>>>>> Hello list! > >>>>>>>>>>>> > >>>>>>>>>>>> We are trying to cluster OFBiz so we removed the > comments > >>>>>>>>>>>> from > >>>>>>>>>>>> framework/base/config/ofbiz-containers.xml and then > >>>>>>>>>>>> launched > >>>>>>>>> OFBiz > >>>>>>>>>>>> > >>>>>>>>>>>> and > >>>>>>>>>>>> get the following error messages (this is using trunk > >>>>>>>>>>>> revision > >>>>>>>>>>>> 775791). According to our guys here the errors come from > >>>>>>>>>>>> framework/catalina/src/org/ofbiz/catalina/container/ > >>>>>>>>>>>> CatalinaContainer.java > >>>>>>>>>>>> around line ~415-450 where its calling functions that > are > >>>>>>>>> specific > >>>>>>>>>>>> > >>>>>>>>>>>> for > >>>>>>>>>>>> tomcat 5.5 and the cluster API in tomcat6 is now > >>>>>>>>>>>> different. Has > >>>>>>>>> > >>>>>>>>>>>> anyone > >>>>>>>>>>>> got a work around or solution to get OFBiz clustered? > >>>>>>>>>>>> > >>>>>>>>>>>> Cheers > >>>>>>>>>>>> Sam > >>>>>>>>>>>> > >>>>>>>>>>>> The log output: > >>>>>>>>>>>> biggie ofbiz-current # grep -i Cluster /tmp/ofbiz- > >>>>>>>>>>>> vanilla.log > >>>>>>>>>>>> 2009-05-18 10:36:17,870 (main) [ > >>>>>>>>> SimpleTcpCluster.java:289:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> setManagerClassName is deprecated, use nested <Manager> > >>>>>>>>>>>> element > >>>>>>>>>>>> inside > >>>>>>>>>>>> the <Cluster> element instead, this request will be > >>>>>>>>>>>> ignored. > >>>>>>>>>>>> 2009-05-18 10:36:17,870 (main) [ > >>>>>>>>> CatalinaContainer.java:448:INFO > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Catalina Cluster [default-server-cluster] configured for > >>>>>>>>>>>> host - > >>>>>>>>>>>> 0.0.0.0 > >>>>>>>>>>>> 2009-05-18 10:36:29,430 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@563e25fd] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:36:36,498 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2a77997] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:36:42,868 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5d729d49] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:36:49,028 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2675ace1] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:36:55,324 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@741bb804] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:01,435 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@283a0f10] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:06,916 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@3e4ee7c0] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:13,058 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2d3c580] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:18,225 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@7958e458] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:24,129 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@3d04f4f9] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:30,268 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5298d146] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:36,293 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@67e2f794] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:42,407 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@1d8dd769] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:48,861 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5bbc608f] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:37:55,015 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@259f1b1d] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:01,091 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5ee55d17] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:07,338 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5f8f22f3] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:13,110 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2dcfde49] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:18,823 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@7747027a] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:24,818 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5e9c8834] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:30,949 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2ccf47c8] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:37,065 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@7c9957eb] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:43,270 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2a73f761] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:49,444 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@45cf6814] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:38:55,799 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5f697518] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:02,021 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@60cc831a] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:08,243 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@3fa9d205] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:14,186 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@5ce69508] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:20,218 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@36ee336f] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:25,821 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@1307e9af] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:33,585 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@55adb150] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:39,602 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@2ba8209b] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:46,026 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@6f8daedc] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:52,297 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@259847e5] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:39:58,502 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@36fb39f6] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:40:05,123 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@6690fc4b] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:40:11,439 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@71c81b84] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:40:17,761 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@12c9f768] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:40:24,203 (main) [ > >>>>>>>>> SimpleTcpCluster.java:520:WARN > >>>>>>>>>>>> > >>>>>>>>>>> ] > >>>>>>>>>>> > >>>>>>>>>>>> Manager > >>>>>>>>>>>> [ org.apache.catalina.session.standardmana...@15f445b7] > >>>>>>>>>>>> > >>>>>>>>>>> does > >>>>>>>>>>> > >>>>>>>>>>>> not > >>>>>>>>>>>> implement ClusterManager, addition to cluster has been > >>>>>>>>>>>> aborted. > >>>>>>>>>>>> 2009-05-18 10:41:24,403 (http-0.0.0.0-8443-3) > >>>>>>>>>>>> [AbstractRefreshableApplicationContext.java:92 :INFO ] > Bean > >>>>>>>>>>>> > >>>>>>>>>>> factory > >>>>>>>>>>> > >>>>>>>>>>>> for > >>>>>>>>>>>> application context [WebApplicationContext for namespace > >>>>>>>>>>>> 'probe-servlet']: > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> org > >>>>>>>>> .springframework > >>>>>>>>> .beans.factory.support.DefaultListableBeanFactory > >>>>>>>>>>> > >>>>>>>>>>>> defining beans > >>>>>>>>>>>> [/index.htm,/resources.htm,/sessions.htm,/app/ > >>>>>>>>>>>> toggle.ajax,/app/ > >>>>>>>>>>>> stop.htm,/app/stop_summary.htm,/app/start.htm,/app/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> start_summary.htm,/app/resetds.htm,/app/expire.htm,/ > >>>>>>>>> deploy.htm,/adm/ > >>>>>>>>>>> > >>>>>>>>>>>> deploycfg.htm,/adm/war.htm,/adm/ > >>>>>>>>>>>> > >>>>>>>>> deploycontext.htm,runtimeInfoAccessor,/sysinfo.htm,/ > >>>>>>>>> sysprops.htm,/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>> > adm/osinfo.htm,/adm/osinfo.ajax,/adm/forcegc.htm,/status.htm,/ > >>>>>>>>> adm/ > >>>>>>>>>>>> > >>>>>>>>>>>> > quickcheck.htm,/adm/quickcheck.xml.htm,/adm/undeploy.htm,/ > >>>>>>>>>>>> adm/ > >>>>>>>>>>>> undeploy_summary.htm,/datasources.htm,/ > >>>>>>>>>>>> datasourcegroups.htm,/sql/ > >>>>>>>>> > >>>>>>>>>>>> datasourcetest.htm,/sql/connection.ajax,/sql/ > >>>>>>>>>>>> recordset.ajax,/sql/ > >>>>>>>>> > >>>>>>>>>>>> cachedRecordset.ajax,/sql/queryHistory.ajax,/sql/ > >>>>>>>>>>>> queryHistoryItem.ajax,/attributes.htm,/app/rmsattr.htm,/ > >>>>>>>>>>>> app/ > >>>>>>>>>>>> > >>>>>>>>> reload.ajax,/app/reload.htm,/app/reload_summary.htm,/app/ > >>>>>>>>> jsp.htm,/ > >>>>>>>>>>>> > >>>>>>>>>>>> app/recompile.htm,/app/viewsource.htm,/app/ > >>>>>>>>>>>> viewservlet.htm,/app/ > >>>>>>>>> > >>>>>>>>>>>> downloadserv.htm,/adm/discard.htm,/appsummary.htm,/app/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> viewwebxml.htm,/adm/viewcontextxml.htm,/app/ > >>>>>>>>> downloadwebxml.htm,/adm/ > >>>>>>>>>>> > >>>>>>>>>>>> downloadcontextxml.htm,/cnreqdetails.ajax,/ > >>>>>>>>>>>> cntrafdetails.ajax,/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> remember.ajax,/charts.htm,/zoomchart.htm,/logs,/logs/ > >>>>>>>>> download,/logs/ > >>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>> follow.htm,/logs/follow.ajax,/logs/ff_info.ajax,/logs/ > >>>>>>>>> clear.ajax,/ > >>>>>>>>>>>> > >>>>>>>>>>>> decorator.htm,/th_impl1.htm,/th_impl2.htm,/threads.htm,/ > >>>>>>>>>>>> > >>>>>>>>> cldetails.ajax,/adm/kill.htm,clusterWrapper,/cluster.htm,/ > >>>>>>>>> cluster/ > >>>>>>>>>>>> > >>>>>>>>>>>> > members.ajax,/cluster/traffic.ajax,/cluster/requests.ajax,/ > >>>>>>>>>>>> > appattributes.htm,/app/rmappattr.htm,/appinitparams.htm,/ > >>>>>>>>>>>> appservlets.htm,/appservletmaps.htm,/appfilters.htm,/ > >>>>>>>>>>>> > >>>>>>>>> appfiltermaps.htm,jvmMemoryInfoAccessor,/memory.ajax,/ > >>>>>>>>> memory.htm,/ > >>>>>>>>>>>> > >>>>>>>>>>>> wrapper.htm,/adm/restartvm.ajax,/adm/stopvm.ajax,/adm/ > >>>>>>>>>>>> threaddump.ajax,/app/threadstack.ajax,/whois.ajax,/ > >>>>>>>>>>>> 403.htm,/ > >>>>>>>>>>>> 404.htm,/*.oxml.htm,/*.help.ajax,statsCollection,/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> chart > >>>>>>>>> .png > >>>>>>>>> ,connectorStatsCollector > >>>>>>>>> ,clusterStatsCollector,memoryStatsCollector > >>>>>>>>> ,runtimeStatsCollector > >>>>>>>>> ,rcn,cl_traffic,cl_request,connector,traffic,memory_us > >>>>>>>>> age > >>>>>>>>> ,os_memory > >>>>>>>>> > ,swap_usage,cpu_usage,connectorStatsJobDetail,clusterStatsJobDe > >>>>>>>>> tail > >>>>>>>>> ,memoryStatsJobDetail > >>>>>>>>> ,runtimeStatsJobDetail,statsSerializerJobDetail,con > >>>>>>>>> nectorStatsTrigger > >>>>>>>>> ,clusterStatsTrigger,memoryStatsTrigger,runtimeStatsTrigge > >>>>>>>>> r > >>>>>>>>> ,statsSerializerTrigger > >>>>>>>>> ,scheduler,jspViewResolver,themeResolver,messageSour > >>>>>>>>> ce > >>>>>>>>> ,handlerMapping > >>>>>>>>> ,containerWrapper,defaultResourceResolver,jbossResourceReso > >>>>>>>>> lver,containerListener]; > >>>>>>>>>>> > >>>>>>>>>>>> root of BeanFactory hierarchy > >>>>>>>>>>>> 2009-05-18 10:41:24,438 (http-0.0.0.0-8443-3) > >>>>>>>>>>>> [DefaultListableBeanFactory.java:268:INFO ] Pre- > >>>>>>>>>>>> instantiating > >>>>>>>>>>>> singletons > >>>>>>>>>>>> in factory > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> [org > >>>>>>>>> .springframework > >>>>>>>>> .beans.factory.support.DefaultListableBeanFactory > >>>>>>>>>>> > >>>>>>>>>>>> defining beans > >>>>>>>>>>>> [/index.htm,/resources.htm,/sessions.htm,/app/ > >>>>>>>>>>>> toggle.ajax,/app/ > >>>>>>>>>>>> stop.htm,/app/stop_summary.htm,/app/start.htm,/app/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> start_summary.htm,/app/resetds.htm,/app/expire.htm,/ > >>>>>>>>> deploy.htm,/adm/ > >>>>>>>>>>> > >>>>>>>>>>>> deploycfg.htm,/adm/war.htm,/adm/ > >>>>>>>>>>>> > >>>>>>>>> deploycontext.htm,runtimeInfoAccessor,/sysinfo.htm,/ > >>>>>>>>> sysprops.htm,/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>> > adm/osinfo.htm,/adm/osinfo.ajax,/adm/forcegc.htm,/status.htm,/ > >>>>>>>>> adm/ > >>>>>>>>>>>> > >>>>>>>>>>>> > quickcheck.htm,/adm/quickcheck.xml.htm,/adm/undeploy.htm,/ > >>>>>>>>>>>> adm/ > >>>>>>>>>>>> undeploy_summary.htm,/datasources.htm,/ > >>>>>>>>>>>> datasourcegroups.htm,/sql/ > >>>>>>>>> > >>>>>>>>>>>> datasourcetest.htm,/sql/connection.ajax,/sql/ > >>>>>>>>>>>> recordset.ajax,/sql/ > >>>>>>>>> > >>>>>>>>>>>> cachedRecordset.ajax,/sql/queryHistory.ajax,/sql/ > >>>>>>>>>>>> queryHistoryItem.ajax,/attributes.htm,/app/rmsattr.htm,/ > >>>>>>>>>>>> app/ > >>>>>>>>>>>> > >>>>>>>>> reload.ajax,/app/reload.htm,/app/reload_summary.htm,/app/ > >>>>>>>>> jsp.htm,/ > >>>>>>>>>>>> > >>>>>>>>>>>> app/recompile.htm,/app/viewsource.htm,/app/ > >>>>>>>>>>>> viewservlet.htm,/app/ > >>>>>>>>> > >>>>>>>>>>>> downloadserv.htm,/adm/discard.htm,/appsummary.htm,/app/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> viewwebxml.htm,/adm/viewcontextxml.htm,/app/ > >>>>>>>>> downloadwebxml.htm,/adm/ > >>>>>>>>>>> > >>>>>>>>>>>> downloadcontextxml.htm,/cnreqdetails.ajax,/ > >>>>>>>>>>>> cntrafdetails.ajax,/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> remember.ajax,/charts.htm,/zoomchart.htm,/logs,/logs/ > >>>>>>>>> download,/logs/ > >>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>> follow.htm,/logs/follow.ajax,/logs/ff_info.ajax,/logs/ > >>>>>>>>> clear.ajax,/ > >>>>>>>>>>>> > >>>>>>>>>>>> decorator.htm,/th_impl1.htm,/th_impl2.htm,/threads.htm,/ > >>>>>>>>>>>> > >>>>>>>>> cldetails.ajax,/adm/kill.htm,clusterWrapper,/cluster.htm,/ > >>>>>>>>> cluster/ > >>>>>>>>>>>> > >>>>>>>>>>>> > members.ajax,/cluster/traffic.ajax,/cluster/requests.ajax,/ > >>>>>>>>>>>> > appattributes.htm,/app/rmappattr.htm,/appinitparams.htm,/ > >>>>>>>>>>>> appservlets.htm,/appservletmaps.htm,/appfilters.htm,/ > >>>>>>>>>>>> > >>>>>>>>> appfiltermaps.htm,jvmMemoryInfoAccessor,/memory.ajax,/ > >>>>>>>>> memory.htm,/ > >>>>>>>>>>>> > >>>>>>>>>>>> wrapper.htm,/adm/restartvm.ajax,/adm/stopvm.ajax,/adm/ > >>>>>>>>>>>> threaddump.ajax,/app/threadstack.ajax,/whois.ajax,/ > >>>>>>>>>>>> 403.htm,/ > >>>>>>>>>>>> 404.htm,/*.oxml.htm,/*.help.ajax,statsCollection,/ > >>>>>>>>>>>> > >>>>>>>>>>>> > >>>>>>>>>>> > >>>>>>>>> chart > >>>>>>>>> .png > >>>>>>>>> ,connectorStatsCollector > >>>>>>>>> ,clusterStatsCollector,memoryStatsCollector > >>>>>>>>> ,runtimeStatsCollector > >>>>>>>>> ,rcn,cl_traffic,cl_request,connector,traffic,memory_us > >>>>>>>>> age > >>>>>>>>> ,os_memory > >>>>>>>>> > ,swap_usage,cpu_usage,connectorStatsJobDetail,clusterStatsJobDe > >>>>>>>>> tail > >>>>>>>>> ,memoryStatsJobDetail > >>>>>>>>> ,runtimeStatsJobDetail,statsSerializerJobDetail,con > >>>>>>>>> nectorStatsTrigger > >>>>>>>>> ,clusterStatsTrigger,memoryStatsTrigger,runtimeStatsTrigge > >>>>>>>>> r > >>>>>>>>> ,statsSerializerTrigger > >>>>>>>>> ,scheduler,jspViewResolver,themeResolver,messageSour > >>>>>>>>> ce > >>>>>>>>> ,handlerMapping > >>>>>>>>> ,containerWrapper,defaultResourceResolver,jbossResourceReso > >>>>>>>>> lver,containerListener]; > >>>>>>>>>>> > >>>>>>>>>>>> root of BeanFactory hierarchy] > >>>>>>>>>>>> 2009-05-18 10:41:26,442 (http-0.0.0.0-8443-3) [ > >>>>>>>>>>>> QuartzScheduler.java:400:INFO ] Scheduler > >>>>>>>>>>>> DefaultQuartzScheduler_$_NON_CLUSTERED started. > >>>>>>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> > >>>>>>>> Sam Hamilton > >>>>>>>> CTO > >>>>>>>> Virtual Village > >>>>>>>> > >>>>>>>> Tel: +86 (21) 6271 3051 > >>>>>>>> Fax: +86 (21) 5228 8539 > >>>>>>>> Mobile: +86 (135) 2451 4480 > >>>>>>>> E-mail: [email protected] > >>>>>>>> > >>>>>>> > >>>>>> > >>>>>> > >>>>>> > >>>>>> Sam Hamilton > >>>>>> CTO > >>>>>> Virtual Village > >>>>>> > >>>>>> Tel: +86 (21) 6271 3051 > >>>>>> Fax: +86 (21) 5228 8539 > >>>>>> Mobile: +86 (135) 2451 4480 > >>>>>> E-mail: [email protected] > >>>>>> > >>>>>> > >>>>> > >>>> > >>> > >> > > > > > > Sam Hamilton > CTO > Virtual Village > > Tel: +86 (21) 6271 3051 > Fax: +86 (21) 5228 8539 > Mobile: +86 (135) 2451 4480 > E-mail: [email protected]
