Httpd worker MPM Compilation

From NovaOrdis Knowledge Base
Revision as of 19:49, 5 January 2017 by Ovidiu (talk | contribs) (Created page with "=Internal= * worker MPM =Overview= <pre> ./configure ... --with-mpm=worker ... </pre> To test if the worker MPM has been correctly compiled i...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

./configure ... --with-mpm=worker ...

To test if the worker MPM has been correctly compiled into binary, use:

httpd -l

You should see:

[webr@rangiroa ~]$ httpd -l
Compiled in modules:
  core.c
  ...
  worker.c
  http_core.c
  ...

Also you can use:

httpd -V

should report the binary in worker mode.