【求助】Apache的MPM为worker时只启动一个子进程

【求助】Apache的MPM为worker时只启动一个子进程

使用的Apache版本为2.2.6,编译时选择的MPM为worker,现在想通过设置使其只有一个子进程,如何设置?

自己的设置如下:
ServerLimit 1
ThreadLimit 110
StartServers 1
MaxClients  100
ThreadsPerChild 100

但是每次启动时还是启动了两个子进程

root      9554  9527  0 10:23 pts/7    00:00:00 -bash
root     13722  2331  0 10:34 ?        00:00:00 sshd: root@pts/8
root     13724  2331  0 10:34 ?        00:00:00 sshd: root@pts/9
root     13726 13722  0 10:34 pts/8    00:00:00 -bash
root     13750 13724  0 10:34 pts/9    00:00:00 -bash
root     14167     1  0 10:50 ?        00:00:01 /apache/bin/httpd -k start
daemon   14168 14167  0 10:50 ?        00:00:00 /apache/bin/httpd -k start
daemon   14169 14167  0 10:50 ?        00:00:00 /apache/bin/httpd -k start
root     14280  2331  0 10:54 ?        00:00:00 sshd: root@pts/10
root     14284 14280  0 10:55 pts/10   00:00:00 -bash
root     14322 13726  0 10:58 pts/8    00:00:00 ps -ef
[root@localhost conf]#
有知道原因的大大指点一下,不胜感激!!