cluster computing - jboss clustering GMS, join -
i have jboss 5.1.0.
we have configured jboss somehow using clustering, in fact not use clustering while developing or testing. in order launch project have type following:
./run.sh -c -g uniqueclustername -b 0.0.0.0 -djboss.messaging.serverpeerid=1 -djboss.service.binding.set=ports-01
but while jboss starting able see in console:
17:24:45,149 warn [gms] join(172.24.224.7:60519) sent 172.24.224.2:61247 timed out (after 3000 ms), retrying 17:24:48,170 warn [gms] join(172.24.224.7:60519) sent 172.24.224.2:61247 timed out (after 3000 ms), retrying 17:24:51,172 warn [gms] join(172.24.224.7:60519)
here 172.24.224.7 local ip though 172.24.224.2 other ip of other developer in our room (and jboss there stoped).
so, tries join other node or something. (i'm not familiar how jboss acts in clusters). , result application not starting.
what may problem in? how avoid joining ?
you can fix specifying
-djgroups.udp.ip_ttl=0
in startup. sets ip time-to-live on jgroups packets zero, never anywhere, , cluster never form. use in dev here stop various developer machines forming cluster. there's no need specify unique cluster name.
i'm assuming need clustering in production, right? use default
configuration instead of all
? remove clustering stuff altogether.
Comments
Post a Comment