RE: How to "alias out" port 8080?

2001-07-31 Thread Deacon Marcus

Couldn't you just filter this list out, SPAMMER ? dM

> -Original Message-
> From: Nikolic Branislav [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 01, 2001 1:05 AM
> To: [EMAIL PROTECTED]
> Subject: AW: How to "alias out" port 8080?
>
>
> UNSUBSCRIBE!!!
>
> -Ursprüngliche Nachricht-
> Von: Michael Wentzel [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 31. Juli 2001 21:57
> An: '[EMAIL PROTECTED]'
> Betreff: RE: How to "alias out" port 8080?
>
>
> > I have the similar question: What if we have Apache run on
> > port 80 and don't
> > want to config Apache to work with Tomcat? So can we have
> > both Apache and Tomcat
> > standalone run on port 80 so users don't need to type the
> > port number? Thanks.
>
> Nope.
>
> ---
> Michael Wentzel
> Software Developer
> Software As We Think - http://www.aswethink.com
>
>




Re: How to "alias out" port 8080?

2001-07-31 Thread Tim O'Neil

At 01:47 PM 7/31/2001, Pier P. Fumagalli wrote:
>Unless you bind to two different IP addresses on the same machine.

If he has a multi homed machine, which was not mentioned and
is effectively two different machines anyway, as far as IP is
concerned.




RE: How to "alias out" port 8080?

2001-07-31 Thread Tim O'Neil

At 12:43 PM 7/31/2001, you wrote:

> No.  You can think of it as having two butlers trying to answer the
>same door - it just doesn't work because they fight with each other to
>answer the door.  (Its not quite that straight forward, but you probably get
>the idea)

Actually, it is that strait forward. Ports are locked once
claimed by a process. That's it.




Re: How to "alias out" port 8080?

2001-07-31 Thread Pier P. Fumagalli

Tim O'Neil at [EMAIL PROTECTED] wrote:

> At 12:48 PM 7/31/2001, you wrote:
>> I have the similar question: What if we have Apache run on port 80 and don't
>> want to config Apache to work with Tomcat? So can we have both Apache and
>> Tomcat
>> standalone run on port 80 so users don't need to type the port number?
>> Thanks.
> 
> Can't do that. You can't have both processes use the same
> port at the same time. You can write/find a proxy server/
> load balancer that will forward requests to the appropriate
> process however.

Unless you bind to two different IP addresses on the same machine.

Pier




RE: How to "alias out" port 8080?

2001-07-31 Thread Michael Wentzel

> I have the similar question: What if we have Apache run on 
> port 80 and don't
> want to config Apache to work with Tomcat? So can we have 
> both Apache and Tomcat
> standalone run on port 80 so users don't need to type the 
> port number? Thanks.

Nope.

---
Michael Wentzel
Software Developer
Software As We Think - http://www.aswethink.com



RE: How to "alias out" port 8080?

2001-07-31 Thread Pete Freitag

You have to configure Apache to work with tomcat if you want them both to
cooperate.


Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM
ColdFusion Developers Resources
http://www.cfdev.com/

-Original Message-
From: Tsinwah Lee [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 31, 2001 3:49 PM
To: [EMAIL PROTECTED]
Subject: Re: How to "alias out" port 8080?


I have the similar question: What if we have Apache run on port 80 and don't
want to config Apache to work with Tomcat? So can we have both Apache and
Tomcat
standalone run on port 80 so users don't need to type the port number?
Thanks.

T.

Barry Draper wrote:

> Here's one way to do it.
> If you don't need to use port 80 (the default port for an HTTP server)
> for another HTTP (aka web) server, change the port number in the file
> TOMCAT_HOME/conf/server.xml from 8080 to 80.
> Here's the snippet of code where I changed this on my Tomcat 3.2.1
> installation.
> Note that I changed mine to 8081 to avoid conflict with another Tomcat
> server
> listening on 8080.
>
>  
>
> 
> 
> 
> value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
>  value="8081"/>
> 
>
>Note that if you are running a regular HTTP server like Apache or IIS,
>it would listen by default on port 80. If you run Tomcat with Apache,
>Tomcat listens by default on 8007 and Apache (listening by default on
80)
>dispatches/routes servlet requests to Tomcat.
>
> Barry Draper
> IBM Informix
> Oakland, CA
> [EMAIL PROTECTED]
>
> > -Original Message-
> > From: Ali Manji [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 31, 2001 11:08 AM
> > To: [EMAIL PROTECTED]
> > Subject: How to "alias out" port 8080?
> >
> >
> >
> > Hi,
> >
> > I am trying out a Tomcat 4.0 beta and was wondering if there
> > is a way to
> > "alias out" the port.  So for instance, I would like to enter:
> >
> > http://myorg.org/stuff instead of
> >
> > http://myorg.org:8080/stuff
> >
> > Is this possible?
> >
> > Thanks in advance for any help!
> >
> >
> > *
> > Ali M. Manji
> > *
> >
> >
> > _
> > Get your FREE download of MSN Explorer at
> > http://explorer.msn.com/intl.asp
> >





RE: How to "alias out" port 8080?

2001-07-31 Thread Randy Layman


You need to reconfigure Tomcat to listen on port 80.  This will
cause problems on computers that already have a web server (Apache, IIS,
iPlanet, etc) running.  Also, unless you are the root user this is not
allowed on Unix computers.

Randy

> -Original Message-
> From: Ali Manji [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 31, 2001 2:08 PM
> To: [EMAIL PROTECTED]
> Subject: How to "alias out" port 8080?
> 
> 
> 
> Hi,
> 
> I am trying out a Tomcat 4.0 beta and was wondering if there 
> is a way to
> "alias out" the port.  So for instance, I would like to enter:
> 
> http://myorg.org/stuff instead of
> 
> http://myorg.org:8080/stuff
> 
> Is this possible?
> 
> Thanks in advance for any help!
> 
> 
> *
> Ali M. Manji
> *
> 
> 
> _
> Get your FREE download of MSN Explorer at 
> http://explorer.msn.com/intl.asp
> 



RE: How to "alias out" port 8080?

2001-07-31 Thread Randy Layman


No.  You can think of it as having two butlers trying to answer the
same door - it just doesn't work because they fight with each other to
answer the door.  (Its not quite that straight forward, but you probably get
the idea)

Randy

> -Original Message-
> From: Tsinwah Lee [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 31, 2001 3:49 PM
> To: [EMAIL PROTECTED]
> Subject: Re: How to "alias out" port 8080?
> 
> 
> I have the similar question: What if we have Apache run on 
> port 80 and don't
> want to config Apache to work with Tomcat? So can we have 
> both Apache and Tomcat
> standalone run on port 80 so users don't need to type the 
> port number? Thanks.
> 
> T.
> 
> Barry Draper wrote:
> 
> > Here's one way to do it.
> > If you don't need to use port 80 (the default port for an 
> HTTP server)
> > for another HTTP (aka web) server, change the port number 
> in the file
> > TOMCAT_HOME/conf/server.xml from 8080 to 80.
> > Here's the snippet of code where I changed this on my Tomcat 3.2.1
> > installation.
> > Note that I changed mine to 8081 to avoid conflict with 
> another Tomcat
> > server
> > listening on 8080.
> >
> >  
> >
> > 
> >  className="org.apache.tomcat.service.PoolTcpConnector">
> >  >
> > value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
> >  > value="8081"/>
> > 
> >
> >Note that if you are running a regular HTTP server like 
> Apache or IIS,
> >it would listen by default on port 80. If you run Tomcat 
> with Apache,
> >Tomcat listens by default on 8007 and Apache (listening 
> by default on 80)
> >dispatches/routes servlet requests to Tomcat.
> >
> > Barry Draper
> > IBM Informix
> > Oakland, CA
> > [EMAIL PROTECTED]
> >
> > > -Original Message-
> > > From: Ali Manji [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, July 31, 2001 11:08 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: How to "alias out" port 8080?
> > >
> > >
> > >
> > > Hi,
> > >
> > > I am trying out a Tomcat 4.0 beta and was wondering if there
> > > is a way to
> > > "alias out" the port.  So for instance, I would like to enter:
> > >
> > > http://myorg.org/stuff instead of
> > >
> > > http://myorg.org:8080/stuff
> > >
> > > Is this possible?
> > >
> > > Thanks in advance for any help!
> > >
> > >
> > > *
> > > Ali M. Manji
> > > *
> > >
> > >
> > > _
> > > Get your FREE download of MSN Explorer at
> > > http://explorer.msn.com/intl.asp
> > >
> 



Re: How to "alias out" port 8080?

2001-07-31 Thread Tim O'Neil

At 12:48 PM 7/31/2001, you wrote:
>I have the similar question: What if we have Apache run on port 80 and don't
>want to config Apache to work with Tomcat? So can we have both Apache and 
>Tomcat
>standalone run on port 80 so users don't need to type the port number? Thanks.

Can't do that. You can't have both processes use the same
port at the same time. You can write/find a proxy server/
load balancer that will forward requests to the appropriate
process however.




Re: How to "alias out" port 8080?

2001-07-31 Thread Tsinwah Lee

I have the similar question: What if we have Apache run on port 80 and don't
want to config Apache to work with Tomcat? So can we have both Apache and Tomcat
standalone run on port 80 so users don't need to type the port number? Thanks.

T.

Barry Draper wrote:

> Here's one way to do it.
> If you don't need to use port 80 (the default port for an HTTP server)
> for another HTTP (aka web) server, change the port number in the file
> TOMCAT_HOME/conf/server.xml from 8080 to 80.
> Here's the snippet of code where I changed this on my Tomcat 3.2.1
> installation.
> Note that I changed mine to 8081 to avoid conflict with another Tomcat
> server
> listening on 8080.
>
>  
>
> 
> 
> 
> value="org.apache.tomcat.service.http.HttpConnectionHandler"/>
>  value="8081"/>
> 
>
>Note that if you are running a regular HTTP server like Apache or IIS,
>it would listen by default on port 80. If you run Tomcat with Apache,
>Tomcat listens by default on 8007 and Apache (listening by default on 80)
>dispatches/routes servlet requests to Tomcat.
>
> Barry Draper
> IBM Informix
> Oakland, CA
> [EMAIL PROTECTED]
>
> > -Original Message-
> > From: Ali Manji [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 31, 2001 11:08 AM
> > To: [EMAIL PROTECTED]
> > Subject: How to "alias out" port 8080?
> >
> >
> >
> > Hi,
> >
> > I am trying out a Tomcat 4.0 beta and was wondering if there
> > is a way to
> > "alias out" the port.  So for instance, I would like to enter:
> >
> > http://myorg.org/stuff instead of
> >
> > http://myorg.org:8080/stuff
> >
> > Is this possible?
> >
> > Thanks in advance for any help!
> >
> >
> > *
> > Ali M. Manji
> > *
> >
> >
> > _
> > Get your FREE download of MSN Explorer at
> > http://explorer.msn.com/intl.asp
> >




RE: How to "alias out" port 8080?

2001-07-31 Thread Barry Draper

Here's one way to do it.
If you don't need to use port 80 (the default port for an HTTP server)
for another HTTP (aka web) server, change the port number in the file
TOMCAT_HOME/conf/server.xml from 8080 to 80.
Here's the snippet of code where I changed this on my Tomcat 3.2.1
installation.
Note that I changed mine to 8081 to avoid conflict with another Tomcat
server
listening on 8080.

 






 
   Note that if you are running a regular HTTP server like Apache or IIS,
   it would listen by default on port 80. If you run Tomcat with Apache,
   Tomcat listens by default on 8007 and Apache (listening by default on 80)
   dispatches/routes servlet requests to Tomcat.

Barry Draper
IBM Informix
Oakland, CA
[EMAIL PROTECTED]

> -Original Message-
> From: Ali Manji [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 31, 2001 11:08 AM
> To: [EMAIL PROTECTED]
> Subject: How to "alias out" port 8080?
> 
> 
> 
> Hi,
> 
> I am trying out a Tomcat 4.0 beta and was wondering if there 
> is a way to
> "alias out" the port.  So for instance, I would like to enter:
> 
> http://myorg.org/stuff instead of
> 
> http://myorg.org:8080/stuff
> 
> Is this possible?
> 
> Thanks in advance for any help!
> 
> 
> *
> Ali M. Manji
> *
> 
> 
> _
> Get your FREE download of MSN Explorer at 
> http://explorer.msn.com/intl.asp
> 



RE: How to "alias out" port 8080?

2001-07-31 Thread Pete Freitag

If you change your config to run the server on port 80 instead of 8080 your
web browser will assume http://myorg.org:80/ when you type http://myorg.org/
since port 80 is the default port for http.


Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM
Web Developers Resources
http://www.cfdev.com/index.cfm?ref=126

-Original Message-
From: Ali Manji [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 31, 2001 2:08 PM
To: [EMAIL PROTECTED]
Subject: How to "alias out" port 8080?



Hi,

I am trying out a Tomcat 4.0 beta and was wondering if there is a way to
"alias out" the port.  So for instance, I would like to enter:

http://myorg.org/stuff instead of

http://myorg.org:8080/stuff

Is this possible?

Thanks in advance for any help!


*
Ali M. Manji
*


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp