Re: [us...@httpd] High load apache

2010-09-15 Thread John List
If you've already narrowed it down to php, jmeter probably won't help you further. Are you getting any error messages in your apache log? If not, check the log level in your php.ini file and set it to log everything. Is there not a list or forum for horde? Try posting there. John On

Re: [us...@httpd] High load apache

2010-09-15 Thread Paras pradhan
No errors.. but I can see warnings -- [Wed Sep 15 09:55:39 2010] [warn] (103)Software caused connection abort: mod_fcgid: ap_pass_brigade failed in handle_request function - Thanks Paras. On Wed, Sep 15, 2010 at 1:54 AM, John List johnl...@gulfbridge.net wrote: If you've already narrowed it

Re: [us...@httpd] High load apache

2010-09-14 Thread Paras pradhan
Pablo, Here the o/p: command: ab -t 60 -c 100 https://domain/h/imp/login.php vmstat: [r...@wmail /]# vmstat -S M 2 20 procs ---memory-- ---swap-- -io --system-- -cpu-- r b swpd free buff cache si sobibo in cs us sy id wa st 40 0 0

Re: [us...@httpd] High load apache

2010-09-14 Thread Pablo Garcia Melga
I'm not familiar with Horde, does it run against a database server ?, based on the information you provided, there's seems to be something else preventing the apache to serve the requests on time. On Tue, Sep 14, 2010 at 2:19 PM, Paras pradhan pradhanpa...@gmail.com wrote: Pablo, Here the o/p:

Re: [us...@httpd] High load apache

2010-09-14 Thread Paras pradhan
Yes horde is based on PHP and Mysql. But the page I am hitting with ab is just the login page and no database involved. Paras. On Tue, Sep 14, 2010 at 12:43 PM, Pablo Garcia Melga mal...@gmail.comwrote: I'm not familiar with Horde, does it run against a database server ?, based on the

Re: [us...@httpd] High load apache

2010-09-14 Thread Paras pradhan
Just confirmed that the runtime wait is happening to all the database based and non database based php scripts and with plain html files it is fine. Ideas? Paras. On Tue, Sep 14, 2010 at 12:46 PM, Paras pradhan pradhanpa...@gmail.comwrote: Yes horde is based on PHP and Mysql. But the page I

Re: [us...@httpd] High load apache

2010-09-14 Thread Pablo Garcia Melga
Sorry Paras, I didn't catch it right , then the behavior is : Database based (Performs Wrong) Non Database based (perform good) html files (performs good) is this right ? Asuming this is the case, then you should check your database server to see if you're seeing stress signs on it. Also, if

Re: [us...@httpd] High load apache

2010-09-14 Thread Paras pradhan
Pablo, With .html files, it performs good. with php scripts it doesnot (whether it is using database or not) I will look for jmeter. Thanks Paras. On Tue, Sep 14, 2010 at 5:00 PM, Pablo Garcia Melga mal...@gmail.comwrote: Sorry Paras, I didn't catch it right , then the behavior is :

Re: [us...@httpd] High load apache

2010-09-13 Thread Paras pradhan
John, I am testing to support 300 requests / second. concurrent parameter in ab does test number of Established tcp session per second if I am not mistaken. Thanks Paras. On Fri, Sep 10, 2010 at 5:34 PM, John List johnl...@gulfbridge.net wrote: On 09/10/2010 06:09 PM, Paras pradhan wrote:

Re: [us...@httpd] High load apache

2010-09-13 Thread John List
On 09/13/2010 12:41 PM, Paras pradhan wrote: John, I am testing to support 300 requests / second. concurrent parameter in ab does test number of Established tcp session per second if I am not mistaken. Thanks Paras. Sorry again, Paras. This time I erred in two ways: I said you were

Re: [us...@httpd] High load apache

2010-09-13 Thread Paras pradhan
I got almost the same result as yours with a small test php script. But with the login page of horde, I am getting a small number of requests processed. I am assuming my tuned apache is fine and its the bulky horde php scripts that are hitting me. But still looking around the solution.. I have

Re: [us...@httpd] High load apache

2010-09-10 Thread John List
Which processes are using the processors the most? (I suspect your imap server might be more responsible than apache.) John Hicks On 09/08/2010 03:42 PM, Paras pradhan wrote: Hi, Looking for recommendations. I need to serve 100-200+ concurrent users to provide php based webmail client

Re: [us...@httpd] High load apache

2010-09-10 Thread Paras pradhan
On Fri, Sep 10, 2010 at 4:58 PM, John List johnl...@gulfbridge.net wrote: Which processes are using the processors the most? (I suspect your imap server might be more responsible than apache.) John Hicks True . But I am only hitting the login.php page from ab to benchmark. Thanks Paras.

Re: [us...@httpd] High load apache

2010-09-10 Thread John List
On 09/10/2010 06:09 PM, Paras pradhan wrote: On Fri, Sep 10, 2010 at 4:58 PM, John List johnl...@gulfbridge.net mailto:johnl...@gulfbridge.net wrote: Which processes are using the processors the most? (I suspect your imap server might be more responsible than apache.) John Hicks

[us...@httpd] High load apache

2010-09-08 Thread Paras pradhan
Hi, Looking for recommendations. I need to serve 100-200+ concurrent users to provide php based webmail client (horde). I have setup memcached and php-fastcgid for this purpose. The server has four 2.2G AMD optereon cores with 8GB of memory. I am doing stress test using ab as: ab -t 36000 -c 100

Re: [us...@httpd] High load apache

2010-09-08 Thread Fábio Jr.
Hi, Try to enable mod_expires and mod_deflate to see if there is some significant boost in the performance. []s. Fábio jr. Em 08-09-2010 16:42, Paras pradhan escreveu: Hi, Looking for recommendations. I need to serve 100-200+ concurrent users to provide php based webmail client (horde).

Re: [us...@httpd] High load apache

2010-09-08 Thread Paras pradhan
They are loaded: LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so Thanks Paras. On Wed, Sep 8, 2010 at 3:05 PM, Fábio Jr. fjuniorli...@gmail.com wrote: Hi, Try to enable mod_expires and mod_deflate to see if there is some significant boost

Re: [us...@httpd] High load apache

2010-09-08 Thread luis medrano
what this modules do? On Wed, Sep 8, 2010 at 1:30 PM, Paras pradhan pradhanpa...@gmail.com wrote: They are loaded: LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so Thanks Paras. On Wed, Sep 8, 2010 at 3:05 PM, Fábio Jr.

Re: [us...@httpd] High load apache

2010-09-08 Thread Christian Wittwer
I guess you can, beside from all the apache tuning, speed up your setup with two components. 1. Use a php accelerators 2. Run a http accelerator like varnish in front of the apache for all the static files 2010/9/8 luis medrano lmzaldi...@gmail.com: what this modules do? On Wed, Sep 8, 2010 at

[us...@httpd] high load apache mpm configuration

2010-03-29 Thread alin vasile
Hi All,    Did anyone configured an apache 2.2 for a high traffic server? I am interested in how many connections can handle an apache installation using worker or prefork (and wich one is more suitable) for a minimum response time, ignoring file i/o (this server will server reverse proxy

Re: [us...@httpd] high load apache mpm configuration

2010-03-29 Thread Arnab Ganguly
Hi Alin, User worker model.It will give you the privilege of both threads and process.Tweak around the params MaxChildProcess,MaxThreads and MinThreadsand may be MaxMemFree for memory usage. Thanks, -A On Tue, Mar 30, 2010 at 1:32 AM, alin vasile alinachegal...@yahoo.comwrote: Hi All, Did