Re: [users@httpd] Apache on CentOS 6 -- lots of reading requests

2013-04-06 Thread linuxsupport
that Reading Request > connections appear in server status. > If you have too many of them you can decrease Timeout in httpd config. > > Regards, > Marcin Wanat > > > 2013/4/6 linuxsupport > >> I am facing a problem with Apache on CentOS 6 >> >> Apache 2.

[users@httpd] Apache on CentOS 6 -- lots of reading requests

2013-04-05 Thread linuxsupport
I am facing a problem with Apache on CentOS 6 Apache 2.2.19 is complied from source. I see so many reading requests in Apache status page, as per my previous experience this "reading request" issue mainly comes when any of the internet route having any problem and request takes time to completely

Re: [users@httpd] VirtualHost configuration not working as expected with ePages solution

2013-01-03 Thread linuxsupport
What Apache version are you running? Have you added something like below in httpd.conf NameVirtualHost your_ip_address:80 then DocumentRoot /var/www/html/path ServerName another.url.com ServerAlias another.url.com Replace your_ip_address with the IP of the machine Apache is running on On T

Re: [users@httpd] apache getting stuck after reaching max number of max clients

2012-09-27 Thread linuxsupport
s a relay high traffic site, currently i just reduce some time out > values such as fallows .., make apache to kill child processors more > quickly. hopefully it makes some improvements > > > Timeout 700 > KeepAliveTimeout 10 > > Thank You > john > > > > >

Re: [users@httpd] apache getting stuck after reaching max number of max clients

2012-09-27 Thread linuxsupport
You can raise max client limit as bellow MaxClients 250 But if there is any issue with the application/website you are running on the Apache then it will reach to 250 also. Do you have that many requests? 150 concurrent requests are meant for high traffic site. You need to analyze the problem f

Re: [users@httpd] Apache Proxy configuration question

2012-09-19 Thread linuxsupport
Did you try using SSLProxyEngine On ? Normally, you do not need to use SSL when proxying, as SSL is used to secure contents, and if you install SSL certificate on Apache which is proxing you do not need to have SSL on backend servers On Wed, Sep 19, 2012 at 5:40 PM, Vivek Nambiar wrote: > Hi Jer

Re: [users@httpd] How to strip existing expires/max-age headers and add new

2012-09-11 Thread linuxsupport
try adding below directives Header unset Cache-Control ExpiresByType image/jpeg "access plus 1 month" On Tue, Sep 11, 2012 at 8:10 PM, Bhattacharya, Sudip < sudip.bhattacha...@genpact.com> wrote: > Hi, > > I am new to this group, and also new to Apache HTTPD. Need your expert > inputs on the bel

Re: [users@httpd] WAMP SSO

2012-09-11 Thread linuxsupport
try mod_auth_tkt On Tue, Sep 11, 2012 at 11:46 AM, Satya Prakash Prasad < satyaprakash.pra...@gmail.com> wrote: > Thanks to all for the information and details as provided. > > I would try to explore the various options provided in the discussion. > Kindly note that I need to implement it on WAMP

[users@httpd] Apache 2.4 with Event MPM and mod_perl

2012-06-29 Thread linuxsupport
Hi All, Is it possible to run mod_perl with Apache event MPM (in Apache 2.4) ? anyone used this? Thanks

Re: [users@httpd] Apache 2.4.2 compilation problem on CentOS 5.7

2012-06-23 Thread linuxsupport
I removed following options and it worked well. thanks --build=x86_64-redhat-linux-gnu --host=x86_64 --target=x86_64-redhat-linux-gnu On Sun, Jun 24, 2012 at 2:48 AM, Rainer Jung wrote: > On 23.06.2012 07:23, linuxsupport wrote: > >> Hi All, >> >> I am trying to instal