[users@httpd] digest auth over ssl

2014-06-19 Thread Pol Hallen
Hi all :-) I've configured apache2 to redirect a virtual host (munin) from http to https, I've something like this: cat /etc/apache2/site-enabled/default [...] # 20140619 - munin redirect http to https RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_UR

Re: [users@httpd] How to Redirect a URL

2014-06-19 Thread Stefan Frei
Hello maybe a good htaccess file can solve what you are looking for ... (pretty sure thats the case) Cheers Stefan 2014-06-18 19:17 GMT+02:00 Lou Henry : > Hi, > > I am fairly new to configuring apache web servers. Currently, I have a > vanity url set up in an Apache Load Balancer and that goes

Re: [users@httpd] Apache/Tomcat/mod_jk/Linux - Error 500 when trying to send a hessian request via load balancer to tomcat application

2014-06-19 Thread Frederik Nosi
Hi, On 06/19/2014 06:05 PM, Dave McGee wrote: Hi all, First post here so please be gentle, haha! I am working with an Apache / Tomcat cluster / mod_jk / Linux setup: - An Apache HTTP Server acting as a Load Balancer - 2 Tomcat Servers (Node A and Node B) - We have a Java/Grails application

[users@httpd] Apache/Tomcat/mod_jk/Linux - Error 500 when trying to send a hessian request via load balancer to tomcat application

2014-06-19 Thread Dave McGee
Hi all, First post here so please be gentle, haha! I am working with an Apache / Tomcat cluster / mod_jk / Linux setup: - An Apache HTTP Server acting as a Load Balancer - 2 Tomcat Servers (Node A and Node B) - We have a Java/Grails application being hosted on each of the Tomcat servers. - We'

Re: [users@httpd] how to identify number of working threads

2014-06-19 Thread Vadim Blumkin
Thanks a lot , Eric , Frederik I didn't notice it . Vadim On Thu, Jun 19, 2014 at 3:29 PM, Eric Covener wrote: > On Thu, Jun 19, 2014 at 8:26 AM, Vadim Blumkin > wrote: > > Hi all > > > > > > > > Is there any way to find how many concurrent opened threads are working > at > > the moment ? > >

Re: [users@httpd] how to identify number of working threads

2014-06-19 Thread Frederik Nosi
Hi, On 06/19/2014 02:26 PM, Vadim Blumkin wrote: Hi all Is there any way to find how many concurrent opened threads are working at the moment ? on Linux just du a: ps -efaL | grep httpd | grep -v grep | wc -l (change httpd to apache if needed) I found that there is a mod_status modul

Re: [users@httpd] how to identify number of working threads

2014-06-19 Thread Eric Covener
On Thu, Jun 19, 2014 at 8:26 AM, Vadim Blumkin wrote: > Hi all > > > > Is there any way to find how many concurrent opened threads are working at > the moment ? > > I found that there is a mod_status module can perform some statistics , but > didn't find any parameter point to opened threads. The

[users@httpd] how to identify number of working threads

2014-06-19 Thread Vadim Blumkin
Hi all Is there any way to find how many concurrent opened threads are working at the moment ? I found that there is a mod_status module can perform some statistics , but didn't find any parameter point to opened threads. Thanks, Vadim