2 Replies Latest reply on Jan 12, 2009 12:56 PM by joedunn

    jboss.bind.address Inquiry

    joedunn

      All

      I am presently upgrading from jboss-3.2.8 to jboss-4.3.0 and I can not find how we ever set the jboss.bind.address.

      in 3.2.8 jboss binds the server IP (eth0) with no issues at all. In 4.3.0 I have to specify -b 0.0.0.0 on the run.sh to get jboss to come up correctly.

      Is this a new behavior added to jboss 4.3.0? How did jboss 3.2.8 bind? (i can't find any admin docs on 3.2.8 anymore.)

      thanks

        • 1. Re: jboss.bind.address Inquiry
          peterj

          Prior to JBoss AS 4.2.0, the app server always bound to 0.0.0.0 automatically. Starting with 4.2.0, it now binds to 127.0.0.1 automatically. So yes, you now need to "run -b 0.0.0.0".

          I would point you to the readme.html file, but for some reason that is missing in JBoss EAP 4.3 (but if you download the community version of 4.2.x, this configuration change is covered in those readme files)

          https://www.jboss.org/community/docs/DOC-10179

          • 2. Resolved: jboss.bind.address Inquiry
            joedunn

             

            "PeterJ" wrote:
            Prior to JBoss AS 4.2.0, the app server always bound to 0.0.0.0 automatically. Starting with 4.2.0, it now binds to 127.0.0.1 automatically. So yes, you now need to "run -b 0.0.0.0".

            I would point you to the readme.html file, but for some reason that is missing in JBoss EAP 4.3 (but if you download the community version of 4.2.x, this configuration change is covered in those readme files)

            https://www.jboss.org/community/docs/DOC-10179


            Thanks Peter that was it, appreciate your help very much.