1 Reply Latest reply on Aug 5, 2014 12:07 PM by jason.marley

    How to view JBoss admin console from Safari?

    rickilambert

      I am starting my jboss instance with the following command

       

      nohup  ./standalone.sh -b 0.0.0.0 &                                     

       

      Yet when I try to view the admin console it isn't available. What configuration is needed to view the admin console?

       

      Thanks

        • 1. Re: How to view JBoss admin console from Safari?
          jason.marley

          By default the admin console binds to localhost, 127.0.0.1:9990 . If you want to change to any ip, you can either change the interface to bind -Djboss.bind.address.management 0.0.0.0 when you start the server or you can change config file management interface to make it permanent.

           

          <interfaces>
              <interface name="management">
                  <inet-address value="0.0.0.0"/>
              </interface>
              <interface name="public">
                  <inet-address value="127.0.0.1"/>
              </interface>
              <interface name="unsecure">
                  <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
              </interface>
          </interfaces>