1 Reply Latest reply on Jul 22, 2016 5:04 PM by ctomc

    Wildfly 10 doesn't work like a windows service

    jjvillavo

      Good Afternoon,

       

       

      I don't know what I'm doing bad.  I installed  Wildfly like a windows service in 2012R2, when I started the services it works in 127.0.0.1:8080, but when I've tried to use Server's Ip (example) 172.16.0.xx:8080 doen't work. I have the firewall and antivirus desactived...  do someone know what I have to do ???? Thank you a lot of

        • 1. Re: Wildfly 10 doesn't work like a windows service
          ctomc

          you need to bind it to all interfaces.

          aka start server with parameter -b 0.0.0.0

          or update your standalone.xml config so public interface listens to 0.0.0.0 instead of default 127.0.0.1

           

          <interface name="public">

             <inet-address value="${jboss.bind.address:127.0.0.1}"/>

          </interface>

          should become

           

          <interface name="public">

             <inet-address value="0.0.0.0"/>

          </interface>