How to list all the static and dynamically compiled modules in Apache?
Listing statically compiled modules:-
root@openhelp [~]# httpd -l
Compiled in modules:
core.c
mod_authn_file.c
mod_authn_default.c
mod_authz_host.c
mod_authz_groupfile.c
Listing all the static and dynamically compiled modules:-
root@openhelp[~]# httpd -t -D DUMP_MODULES
alias_module (static)
rewrite_module (static)
so_module (static)
auth_passthrough_module (shared)
bwlimited_module (shared)
You may also use the following command:-
root@openhelp [~]# httpd -M
alias_module (static)
rewrite_module (static)
so_module (static)
auth_passthrough_module (shared)
bwlimited_module (shared)
No comments:
Post a Comment