1 Reply Latest reply on Jan 31, 2012 8:00 AM by benashmead

    HTTP and AJP connectors starting on wrong ports?

    benashmead

      Hi,

       

      Can anyone tell me why my HTTP and AJP connectors are firing up on the wrong ports?

       

      [Server:jboss1-server] 05:44:09,125 INFO  [org.apache.coyote.http11.Http11AprProtocol] (MSC service thread 1-3) Starting Coyote HTTP/1.1 on http--10.0.0.202-8230

      [Server:jboss1-server] 05:44:09,137 INFO  [org.jboss.as.modcluster] (MSC service thread 1-4) JBAS011704: Mod_cluster uses default load balancer provider

      [Server:jboss1-server] 05:44:09,156 INFO  [org.jboss.as.clustering] (ServerService Thread Pool -- 43) JBAS010360: Activating JGroups subsystem.

      [Server:jboss1-server] 05:44:09,300 INFO  [org.apache.coyote.ajp.AjpAprProtocol] (MSC service thread 1-3) Starting Coyote AJP/1.3 on ajp--10.0.0.202-8159

       

      The socket bindings in domain.xml are correct, as far as I can see:

       

              <socket-binding-group name="ha-sockets" default-interface="public">

                  <socket-binding name="http" port="8080"/>

                  <socket-binding name="https" port="8443"/>

                  <socket-binding name="ajp" port="8009"/>

       

      And I have subsystem definitions for both:

       

                  <subsystem xmlns="urn:jboss:domain:web:1.1" default-virtual-server="default-host">

                      <connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http"/>

                      <connector name="AJP" protocol="AJP/1.3" socket-binding="ajp"/>

       

      Have I missed a configuration step somewhere?