0 Replies Latest reply on Sep 16, 2014 7:31 AM by rameshkumar.junnuru

    How to Stop redirecting https requst to http in JBoss 7.1.1.Final

    rameshkumar.junnuru


      When hitting URL https://x.x.x.x:7413/console it is redirecting to  http://x.x.x.x:7990/console/App.html but not able to access the admin console due to port 7990 is blocked at firewall level. Can it be possible to access the JBoss admin console on the same https port without redirecting to http port.


      standalone.xml file

       

       

       

      <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>
              <interface name="unsecure">
                  <inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
              </interface>
          </interfaces>

       

          <socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
              <socket-binding name="management-native" interface="management" port="${jboss.management.native.port:7999}"/>
              <socket-binding name="management-http" interface="public" port="${jboss.management.http.port:7990}"/>

       

       

              <socket-binding name="management-https" interface="management" port="${jboss.management.https.port:7413}"/>

       

       

      Can i get the solution for this

      Thanks

      Ramesh