+2 votes
in Web & Google by (71.8k points)
I have installed CentOS webpanel on my VPS. It says the default MPM is event. How can I verify?

1 Answer

+2 votes
by (348k points)
selected by
 
Best answer

You can use command "httpd -V". httpd should be present in the bin folder of Apache.

# /usr/local/apache/bin/httpd -V

Server version: Apache/2.4.29 (Unix)

Server built:   Feb 14 2018 13:01:48

Server's Module Magic Number: 20120211:68

Server loaded:  APR 1.6.2, APR-UTIL 1.6.0

Compiled using: APR 1.6.2, APR-UTIL 1.6.0

Architecture:   64-bit

Server MPM:     event

  threaded:     yes (fixed thread count)

    forked:     yes (variable process count)

by (348k points)
The above command will work on CentOS. If you have Ubuntu, try the following command:

a2query -M

...