-
1. Re: How to start JBoss EAP 6 in Dual Stack with Clustering ?
rhusar Oct 10, 2013 7:13 AM (in response to pradeepsixer)When you say dual stack it means there is both IPv4 and IPv6 connectivity. So which services do you want to run on which IP version?
The exception is coming from mod_cluster adverize mechanism that is sending multicast to group 224.0.1.105.
-
2. Re: How to start JBoss EAP 6 in Dual Stack with Clustering ?
vithun.v Jan 31, 2014 1:01 AM (in response to rhusar)Even I'm facing the same problem.. I dont want to run any specific Jboss service on IPv6. But my application will use IPv6 sockets. When I looked for a workaround for this problem, -Djava.net.preferIPv4Stack=true was recommended with which I couldn't open a v6 sockets.
By the way i use cent-os 5.9 and open jdk
[root@000c29789366 ~]# java -version
java version "1.7.0_45"
OpenJDK Runtime Environment (rhel-2.4.3.1.el5_10-x86_64 u45-b15)
OpenJDK 64-Bit Server VM (build 24.45-b08, mixed mode)
[root@000c29789366 ~]#
-
3. Re: How to start JBoss EAP 6 in Dual Stack with Clustering ?
rhusar Jan 31, 2014 8:15 AM (in response to vithun.v)Looks like a bit confused question. Unless you are writing a resouce adapter and opening your own sockets or doing something against EE specification, all the sockets are managed by the application server! So indeed you are looking at how to configure JBoss AS to work with IPv6 ports, e.g. for the webserver.
So, what do you really mean by your application will use IPv6 sockets?
-
4. Re: How to start JBoss EAP 6 in Dual Stack with Clustering ?
vithun.v Jan 31, 2014 11:20 PM (in response to rhusar)I goes like this.
Ealier our applicaiton used to work only with IPv4 as we had the preferIPvStack option true. When we remove it, we get the mentioned error. The same error disappears when we bind the server to a spefic IP (with the perferv4stack option disabled).
i.e, with -b=0.0.0.0 it fails
with -b=192.X.X.X it works.
Why does it matter? How do we bind to 0.0.0.0 and make this work?
//Like I said, my jboss will be binfing to a v4 ip and will have a v4 multicast, v6 sockets should be used however.
-
5. Re: How to start JBoss EAP 6 in Dual Stack with Clustering ?
nguyennhatkhanh206 Oct 6, 2017 1:57 AM (in response to pradeepsixer)I've seen the same problem for Widfly as above. How does it work with 0.0.0.0?
Any suggestions?