[ACCEPTED]-How to check if mod_wsgi is installed on a shared Apache server?-wsgi

Accepted answer
Score: 17

To check if it is installed:

$ dpkg -s libapache2-mod-wsgi

In case it is 2 installed, you might check if it's loaded 1 by Apache:

$ apache2ctl -t -D DUMP_MODULES
Score: 12

Though you are on Ubuntu.

This might help 1 someone else on CentOS, Fedora or Red Hat

rpm -q mod_wsgi
Score: 7

Since you're on Ubuntu, which is Debian-based, you 1 can look in /etc/apache2/mods-enabled.

Score: 1

if you working with python in Red Hat search 2 this for mod_wsgi installed or not yum search python3-mod_wsgi

or search 1 this for module is loaded or not rpm -q python3-mod_wsgi

More Related questions