<div dir="ltr">We do support some way to advertise (via jgroups) a different host/port than the one that it is actually bound to, right?<div><br></div><div>I thought we had to add that functionality to support OpenShift, where the internal IP given to the AS is different than the externally visible host/port for clustering.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 2, 2015 at 10:20 AM, Brian Stansberry <span dir="ltr">&lt;<a href="mailto:brian.stansberry@redhat.com" target="_blank">brian.stansberry@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 9/1/15 6:52 PM, Arun Gupta wrote:<br>
&gt;&gt;&gt;&gt; Is this scenario different from running multiple WildFly instances on a<br>
&gt;&gt;&gt;&gt; single machine in a non-Docker setup?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Good point, they are the same.<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Reading a bit more, it seems Docker gives each container its own address,<br>
&gt;&gt; visible to the container via the eth0 interface:<br>
&gt;&gt;<br>
&gt;&gt; <a href="https://docs.docker.com/articles/networking/" rel="noreferrer" target="_blank">https://docs.docker.com/articles/networking/</a><br>
&gt;<br>
&gt; Those IP addresses are not available externally AIU.<br>
&gt;<br>
<br>
</span>Ok, I&#39;m getting clear on your scenario. Thanks.<br>
<span class=""><br>
&gt;&gt;&gt; So, if WildFly runs with -b &lt;IP_ADDRESS&gt; then the utility above will<br>
&gt;&gt;&gt; give the correct address and port?<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Yes, assuming IP_ADDRESS != 0.0.0.0, the server config is using a<br>
&gt;&gt; socket-binding named &quot;http&quot; for the web server, and the web server<br>
&gt;&gt; address/port is the one you want.<br>
&gt;&gt;<br>
&gt;<br>
&gt;              ObjectName http = new<br>
&gt; ObjectName(&quot;jboss.as:socket-binding-group=standard-sockets,socket-binding=http&quot;);<br>
&gt;              hostName = (String) mBeanServer.getAttribute(http,&quot;boundAddress&quot;);<br>
&gt;              hostPort = (Integer) mBeanServer.getAttribute(http,&quot;boundPort&quot;);<br>
&gt;<br>
&gt;<br>
&gt; seems to be returning correct HTTP host/port. However<br>
&gt;<br>
&gt;              ObjectName https = new<br>
&gt; ObjectName(&quot;jboss.as:socket-binding-group=standard-sockets,socket-binding=https&quot;);<br>
&gt;              hostSecurePort = (int) mBeanServer.getAttribute(https, &quot;boundPort&quot;);<br>
&gt;<br>
&gt; is throwing NPE.<br>
&gt;<br>
&gt; Will this only be available if HTTPS port is accessible?<br>
&gt;<br>
<br>
</span>Those attributes will only be non-null if the https socket-binding is<br>
used by some service (e.g. an undertow listener.) If the configuration<br>
doesn&#39;t require the socket binding to be used, then the resolution of<br>
the socket binding&#39;s config data to an actual IP address will not occur.<br>
<br>
&gt; Arun<br>
<span class="im HOEnZb">&gt;<br>
&gt;<br>
&gt;<br>
<br>
<br>
--<br>
Brian Stansberry<br>
Senior Principal Software Engineer<br>
JBoss by Red Hat<br>
</span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
</div></div></blockquote></div><br></div>