2 Replies Latest reply on Jul 23, 2011 2:37 PM by menegazzo

    run -b in standalone --server-config ?

    nimo22

      How can I express this

       

      run -b 0.0.0.0

       

      in jboss 7?

       

       

       

      something like:

       

      standalone --properties: ???

       

      The change in standalone.xml does also not work:

       

      <interfaces>

              <interface name="management">

                  <inet-address value="127.0.0.1"/>

              </interface>

              <interface name="public">

                  <inet-address value="0.0.0.0"/> <!--this is changed by me -->

              </interface>

          </interfaces>

       

      I get a error that "0.0.0.0" is a wildcard-ex and I have to use "any-address", but:

       

        <interface name="public">

                  <inet-address value="any-address"/> <!--this is changed by me -->

              </interface>

       

      does also not work.