How can I enable the logio module in Apache 2.2, Ubuntu 16.04?
In folder /etc/apache2/modules-available, I looked for something like logio.load and logio.conf but I did not find these.
When I query apachectl -l
, I get:
Compiled in modules:
core.c
mod_so.c
mod_watchdog.c
http_core.c
mod_log_config.c
mod_logio.c
mod_version.c
mod_unixd.c
I installed apache through apt-get install apache2
(I did not build the server from binaries), and as you can read above mod_logio.c was a compiled-in module.
Can I enable logio given the set up I describe?
Is it possible to get logio.load and logio.conf from some repository (I see this files pattern for other modules at my server's /etc/apache2/modules-available)?
You do not need to enable it.
Modules can either be loaded at compile time or dynamically in the config using the
LoadModule
directive. Enabling a module usinga2enmod
simply adds aLoadModule
directive inmods-enabled
directory, which in turn is included by the following lines in/etc/apache2/apache2.conf
:https://httpd.apache.org/docs/current/configuring.html#modules