On 12/20/2000 at 6:34 PM Katsuyuki Michishita wrote:
> tomcat need to put port number 8080 in the URL, is there any way that I do not have to put 8080? 
 
If Tomcat is the only Web server on the machine, change the default Tomcat port to 80 in its server.xml configuration.
 

From TC3.2
 
      <!-- ==================== Connectors ==================== -->
 
        <!-- Normal HTTP -->
        <Connector className="org.apache.tomcat.service.PoolTcpConnector">
            <Parameter name="handler"
                value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
            <Parameter name="port"
                value="8080"/>
        </Connector>
 

-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 425-0252; Fax 716 223-2506.
-- http://www.husted.com/

Reply via email to