1 Reply Latest reply on Jun 21, 2006 2:46 AM by visolvejboss

    JBoss Console Access problem

    santosh_jpr

      Hi All,

      How do i make the JBoss server listen on some other port than 8080? As i have a dedicated service running on 8080, i cannot use this for JBOss.

      I am running JBoss 4.0.4 GA and i have jdk 1.4.2_01-b06.

      Thanks,
      Santosh

        • 1. Re: JBoss Console Access problem
          visolvejboss

          Hello,

          You can change the port number in the file server.xml in the

          path:/deploy/jbossweb-tomcat55.sar

          For example, In server.xml,

           <!-- A HTTP/1.1 Connector on port 8080 -->
           <Connector port="8082" address="${jboss.bind.address}"
           maxThreads="250" strategy="ms" maxHttpHeaderSize="8192"
           emptySessionPath="true"
           enableLookups="false" redirectPort="8443" acceptCount="100"
           connectionTimeout="20000" disableUploadTimeout="true"/>
          

          Now, JBoss will start in the port 8082 instead of 8080.

          You can change port number as your wish before that, make sure that any other process is not using the new port that you are going to give.