Hi,
I am new to apache. I
have installed the latest apache version in my container with the
default event mpm module along with default config. As per the
documentation, I noticed that the number of threads per process is 25
however I am seeing the different numbers. As soon as the apache
started, 3 processes started as expected. Out of these 3 processes, 2
are having 65 threads and another one is having 81 threads. Could you
please help me to clear the confusion?
[root@2d35c87a72ac /]# ps aux | grep httpd
root 1 0.0 0.2 258044 10352 ? Ss 03:40 0:00 /usr/sbin/httpd -D FOREGROUND
apache 8 0.0 0.1 260628 7732 ? S 03:40 0:00 /usr/sbin/httpd -D FOREGROUND
apache 9 0.3 0.2 1908308 9344 ? Sl 03:40 0:00 /usr/sbin/httpd -D FOREGROUND
apache 19 0.2 0.2 1777172 9348 ? Sl 03:40 0:00 /usr/sbin/httpd -D FOREGROUND
apache 53 0.2 0.2 1777172 9348 ? Sl 03:40 0:00 /usr/sbin/httpd -D FOREGROUND
root 241 0.0 0.0 12136 1148 pts/0 S+ 03:43 0:00 grep --color=auto httpd
[root@2d35c87a72ac /]# ps huH p 9 | wc -l
81
[root@2d35c87a72ac /]# ps huH p 19 | wc -l
65
[root@2d35c87a72ac /]# ps huH p 53 | wc -l
65
[root@2d35c87a72ac /]#
Thanks,