You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Laxmikanth M.S." <la...@sonata-software.com> on 2002/12/11 13:58:02 UTC

Tomcat port number

Hi all,
How to change 8080 port number to some other port for tomcat
thanx
Laxmikanth

*********************************************************************
Disclaimer: The information in this e-mail and any attachments is
confidential / privileged. It is intended solely for the addressee or
addressees. If you are not the addressee indicated in this message, you may
not copy or deliver this message to anyone. In such case, you should destroy
this message and kindly notify the sender by reply email. Please advise
immediately if you or your employer does not consent to Internet email for
messages of this kind.
*********************************************************************

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: Tomcat port number

Posted by Lindomar <li...@bol.com.br>.
Search for 8080 in server.xml

You'll find this connector :
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"  ... >
Finally change the number 8080.


----- Original Message -----
From: "Laxmikanth M.S." <la...@sonata-software.com>
To: "Tomcat Users List" <to...@jakarta.apache.org>
Sent: Wednesday, December 11, 2002 10:58
Subject: Tomcat port number


> Venha para a VilaBOL!
> O melhor lugar para você construir seu site. Fácil e grátis!
> http://vila.bol.com.br
> Hi all,
> How to change 8080 port number to some other port for tomcat
> thanx
> Laxmikanth
>
> *********************************************************************
> Disclaimer: The information in this e-mail and any attachments is
> confidential / privileged. It is intended solely for the addressee or
> addressees. If you are not the addressee indicated in this message, you
may
> not copy or deliver this message to anyone. In such case, you should
destroy
> this message and kindly notify the sender by reply email. Please advise
> immediately if you or your employer does not consent to Internet email for
> messages of this kind.
> *********************************************************************
>
> --
> To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
> For additional commands, e-mail:
<ma...@jakarta.apache.org>
>
>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: Tomcat port number

Posted by David Rayroud <dr...@inomatix.com>.
Hi,

You must edit your $TOMCAT_HOME/conf/server.xml. Make a search for "8080"
and you must see something like this :

<Service name="Tomcat-Standalone">
                <Connector

className="org.apache.coyote.tomcat4.CoyoteConnector"
                        port="8080"
                        minProcessors="5"
                        maxProcessors="75"
                        enableLookups="true"
                        redirectPort="8443"
                        acceptCount="10"
                        debug="0"
                        connectionTimeout="20000"
                        useURIValidationHack="false">
                </Connector>

The definition of the port is the line port="". Here you can change your
port number.

Regard

David Rayroud


-----Message d'origine-----
De : Laxmikanth M.S. [mailto:laxmikanth.ms@sonata-software.com]
Envoyé : mercredi, 11. décembre 2002 13:58
À : Tomcat Users List
Objet : Tomcat port number

Hi all,
How to change 8080 port number to some other port for tomcat
thanx
Laxmikanth

*********************************************************************
Disclaimer: The information in this e-mail and any attachments is
confidential / privileged. It is intended solely for the addressee or
addressees. If you are not the addressee indicated in this message, you may
not copy or deliver this message to anyone. In such case, you should destroy
this message and kindly notify the sender by reply email. Please advise
immediately if you or your employer does not consent to Internet email for
messages of this kind.
*********************************************************************

--
To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail:
<ma...@jakarta.apache.org>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>