Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

How to list all installed/activated Apache modules on a server

Writer Sophia Terry

To (roughly) check for the CVE-2014-6271 vulnerability and to have better general insight.

I want to check if a server uses mod_cgi or mod_cgid modules

How do I list all installed / activated Apache modules on a running Ubuntu Apache HTTP server?

I can use this:

apache2ctl -l

but that shows only the compiled-in modules.

1

1 Answer

apache2ctl -M

will do the job and it's equivalent with:

apache2ctl -t -D DUMP_MODULES

You can see also apache2ctl -h.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy