Re: [users@httpd] Number of concurrent connections to apache

2013-12-09 Thread Jeff Trawick
On Mon, Dec 9, 2013 at 4:02 AM, Kumar Bijayant wrote: > I used below command to get the number of established sessions on the > server. > > netstat -an|grep x.x.x.x:80|grep ESTABLISHED > > To my surprise, it gave me total number as 728. 128 connections more what > I have set up in my Apache. In ap

Re: [users@httpd] Number of concurrent connections to apache

2013-12-09 Thread Kumar Bijayant
I used below command to get the number of established sessions on the server. netstat -an|grep x.x.x.x:80|grep ESTABLISHED To my surprise, it gave me total number as 728. 128 connections more what I have set up in my Apache. In apache I have set up max clients as 600. I want to know what is this

Re: [users@httpd] Number of concurrent connections to apache

2013-12-06 Thread tejas sarade
You can use netstat command to see the current concurrent connections to server. http://linuxers.org/howto/how-find-out-active-connections-or-which-ports-are-openlistening-linux On Fri, Dec 6, 2013 at 3:01 PM, Kumar Bijayant wrote: > Hello All, > > The below setting is configured in one of our a

[users@httpd] Number of concurrent connections to apache

2013-12-06 Thread Kumar Bijayant
Hello All, The below setting is configured in one of our apache webserver ServerLimit 600 StartServers 5 MinSpareServers 5 MaxSpareServers 15 MaxClients 600 There are 2 virtual servers are hosted on this instance. So as per my understanding this m