6 Replies Latest reply on Sep 25, 2015 5:46 AM by sreekanth.munarai

    JBoss Console Issue

    sreekanth.munarai

      Hi All,

       

      Have below two queries:

       

      1.Can we access JBoss console from other servers apart from the server where JBoss is installed?

      If yes, how?

      2.Can we access JBoss console from IP instead of using locolhost? what changes need to be made to achieve the same?

       

      Please revert ASAP.

       

      Thanks,

      Sreekanth

        • 1. Re: JBoss Console Issue
          wdfink

          That depends on the version you have.

          Until AS7 you can use host:8080 in your browser, you need to start the server with "-b <yourIP or localhost)

           

          From AS7 onwards (WildFly)

          you need to change the management alignment with "-bmanagement <yourIP>" localhost is the default

          and use host:9990 from your browser

          • 2. Re: JBoss Console Issue
            sreekanth.munarai

            HI Fink,

             

            Thanks for your response:)

            Issue been resolved by changing following properties in standalone.xml

             

            <interface name="management">

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

                    </interface>

                    <interface name="public">

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

                    </interface>

             

            Thanks,

            Sreekanth

            1 of 1 people found this helpful
            • 3. Re: JBoss Console Issue
              wdfink

              Yes,

              this will change the default if you not use -b<IP> or -Djboss.bind.address=x.x.x.x

              So it is possible to use both approaches.

              If you don't want to be able to change the IP you can use the IP direct instead of ${aName:aDefault}

              • 4. Re: JBoss Console Issue
                sreekanth.munarai

                Fink,

                 

                I tried starting up the server thru 'standalone -b IP' thru cmd, the server starts successfully but was not able to access Jboss console thru IP until and unless i have made the above mentioned changes.

                • 5. Re: JBoss Console Issue
                  wdfink

                  -b <IP> bind the public inerface.

                  For the management console you need to add -bmanagement <IP> or use -Djboss.bind.address.management=IP

                   

                  The interfaces are separated to be able to keep the management privat

                  • 6. Re: JBoss Console Issue
                    sreekanth.munarai

                    Thanks Fink!!