Hi,

And of course it is possible to run Tomcat or Jetty directly in the default 
port (80) if it is not definitely needed for other purposes. With Jetty the 
port is set in Jetty.xml and I am remembering that Tomcat is controlled with 
Server.xml.

I have been running some stress tests with jmeter just last week and on that 
bases it looks like Apache can harm GWC service a bit under heavy load . At 
least in our environment it started to introduce some slow periods for 
generally fast service with more than 20 concurrent users. System behaved like 
sending some 2000 tiles fast at rate of about 200 tiles per second, then nearly 
full stop for a few seconds, and after taking a breath it was fast again. 
Without Apache proxy the systems was stable. I believe it would be faster and 
more reliable to route the requests in the firewall but I have not measured 
that yet.

I do not believe Apache would introduce meaningful lag for WMS services with 
much slover request rate.

-Jukka Rahkonen-


-----Alkuperäinen viesti-----
Lähettäjä: Luca Morandini [mailto:lmorand...@ieee.org]
Lähetetty: su 20.3.2011 21:52
Vastaanottaja: geoserver-users@lists.sourceforge.net
Aihe: Re: [Geoserver-users] getting rid of the 8080 in the geoserver url
 
On 03/18/2011 09:17 PM, Robert Buckley wrote:
> Hi,
>
> I remember seeing a thread in which there was a tangent conversation which 
> enable
> the :8080 part of the geoserver url to be removed. I think it was do to with 
> using
> reverse proxies in apache...or something similar.

Mod Proxy is all you need:

LoadModule proxy_module modules/mod_proxy.so

...

<IfModule mod_proxy.c>
         ProxyRequests Off

         ProxyPass /geoserver http://localhost:8080/geoserver
         ProxyPassReverse /geoserver http://localhost:8080/geoserver

</IfModule>

Regards,

Luca Morandini
http://www.lucamorandini.it


------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users


------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

Reply via email to