Dominic did tell you how to do this.  To quote from him "find the following
section in server.xml and change the port:" where he means the port number
in the text "<Connector
className="org.apache.catalina.connector.http.HttpConnector"
                port="8080" minProcessors="5" maxProcessors="75"
                enableLookups="true" redirectPort="8443"
                acceptCount="10" debug="0" connectionTimeout="60000"/>

 to ->"  as you will notice the number associated with the port is "8080" so
he tells you to change it to "

<Connector className="org.apache.catalina.connector.http.HttpConnector"
                port="80" minProcessors="5" maxProcessors="75"
                enableLookups="true" redirectPort="8443"
                acceptCount="10" debug="0" connectionTimeout="60000"/> "

where you will notice that the number is now just 80 which is the default
HTTP port, hence you don't have to include the port in the URL.

server.xml is generally found in the <tomcat_home>/conf directory.   The
slash would be in a different direction for windows.

Todd

-----Original Message-----
From: Ibrahim Beyazit [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 28, 2002 12:38 PM
To: Tomcat Users List
Subject: Re: Tomcat configuration question


Mine was already 8080 when installed. I still have to put 8080 on URL.
(www.company.com:8080) to get to the home page. How can I configure it so I
don't need to put that 8080 on the URL. Maybe this one is clearer.

Thanks.

----- Original Message -----
From: Dominic Parry <[EMAIL PROTECTED]>
To: Tomcat Users List <[EMAIL PROTECTED]>
Sent: Wednesday, March 27, 2002 11:56 PM
Subject: Re: Tomcat configuration question


> Hi
>
> find the following section in server.xml and change the port:
>
>  <Connector className="org.apache.catalina.connector.http.HttpConnector"
>                port="8080" minProcessors="5" maxProcessors="75"
>                enableLookups="true" redirectPort="8443"
>                acceptCount="10" debug="0" connectionTimeout="60000"/>
>
> to ->
>
>  <Connector className="org.apache.catalina.connector.http.HttpConnector"
>                port="80" minProcessors="5" maxProcessors="75"
>                enableLookups="true" redirectPort="8443"
>                acceptCount="10" debug="0" connectionTimeout="60000"/>
>
>
> hope this helps. Server.xml should be in your conf directory in tomcat
home.
>
> cheers
>
>
> Dominic Parry
> B.Sc (Information Systems, Computer Science)
> B.Sc (Hons) Computer Science
> Rhodes University
> ----- Original Message -----
> From: "Rohit Agarwal" <[EMAIL PROTECTED]>
> To: "Tomcat Users List" <[EMAIL PROTECTED]>
> Sent: Thursday, March 28, 2002 9:53 AM
> Subject: Re: Tomcat configuration question
>
>
> > I have the same question, if somebody can help, that would be great.
> Thanks.
> >
> > Rohit
> > ----- Original Message -----
> > From: "Ibrahim Beyazit" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Wednesday, March 27, 2002 6:47 PM
> > Subject: Tomcat configuration question
> >
> >
> > How would I configure Tomcat so that the default URL can be
> www.company.com
> > instead of localhost:8080? I got the domain part covered. (i.e I got
> > www.company.com:8080 working. But I am having problems with getting rid
of
> > 8080. Any help will be appreciated
> >
> >
> > --
> > To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> > For additional commands: <mailto:[EMAIL PROTECTED]>
> > Troubles with the list: <mailto:[EMAIL PROTECTED]>
> >
> >
>
>
> --
> To unsubscribe:   <mailto:[EMAIL PROTECTED]>
> For additional commands: <mailto:[EMAIL PROTECTED]>
> Troubles with the list: <mailto:[EMAIL PROTECTED]>
>
>

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>



--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to