Apache - Check your webserver supports dso, How to ensure that apache is installe with DSO support
Check your webserver supports dso
How to ensure that apache is installe with DSO support?
To confirm that your apache is compiled with the Dynamic Shared Object run the below command.
# httpd -l
OUTPUT:
Compiled in modules: core.c prefork.c http_core.c mod_so.cIf mod_so.c appears in the list of modules, then your Apache server can use dynamic modules. you might get listed with many other values too, But check for mod_so
You can also use grep to find out result
# httpd -l | grep 'mod_so'
The topic on Apache - Check your webserver supports dso is posted by - Math
Hope you have enjoyed, Apache - Check your webserver supports dsoThanks for your time