> From: Dave Filchak [mailto:sub...@zuka.net]
> Subject: Re: Configuration help with tomcat connectors
> 
> So, can you clarify what you mean by standalone?

Not front-ended by httpd or other web server.

> Right now it is running on port 8080 and I have other sites 
> running on this server on the standard port 80.

So you are using httpd for something besides serving static content?

> Can the standalone run on the server along side of
> apache and share port 80

If by "apache" (which is an open-source software organization) you really mean 
httpd, then no, two servers cannot share a single port on the same IP address.  
You have several options:

A) Run the Tomcat web sites on a different IP address using port 80, not front 
ended by httpd.

B) Continue to run httpd on port 80, and use mod_jk or mod_proxy to pass the 
relevant requests to Tomcat (i.e., what you're trying to do now, with 
apparently little success).

C) Put all of your web sites under Tomcat, eliminating httpd altogether.  This 
works *only* if you're not using httpd for something more esoteric, such as 
running PHP.

Options A or B are likely easier in the short term, C would be the simplest for 
the long term.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to