JBOSS 7ラーニングは127.0.0.1アクセスコンソールのみ


  • jboss元配置jboss-as-7.1.1.1.Final/standalone/configuration/standalone.xml
  •  <interfaces>
            <interface name="management">
                <inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
            </interface>
            <interface name="public">
                <inet-address value="${jboss.bind.address:127.0.0.1}"/>
            </interface>
            <!-- TODO - only show this if the jacorb subsystem is added  -->
            <interface name="unsecure">
                <!--
                  ~  Used for IIOP sockets in the standard configuration.
                  ~                  To secure JacORB you need to setup SSL
                  -->
                <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
            </interface>
        </interfaces>

    次のように変更
    <interfaces>
            <interface name="management">
               <any-ipv4-address/>
            </interface>
            <interface name="public">
                    <any-ipv4-address/>
            </interface>
            <!-- TODO - only show this if the jacorb subsystem is added  -->
            <interface name="unsecure">
                <!--
                  ~  Used for IIOP sockets in the standard configuration.
                  ~                  To secure JacORB you need to setup SSL 
                  -->
                <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
            </interface>
        </interfaces>

    問題解決