mod_scgi module installation for centos 6.3

messiaah

Verified User
Joined
Jan 25, 2009
Messages
18
hi can anyone guide me as how to install mod_scgi module for apache in centos 6.3 64 bit
 
hi can anyone guide me as how to install mod_scgi module for apache in centos 6.3 64 bit
You will require the apache mod_scgi module which is not available from the CentOS repositories
Code:
rpm –ivh http://dl.fedoraproject.org/pub/epel/5/x86_64/mod_scgi-1.13-1.el5.x86_64.rpm
Install the mod_scgi module for Apache
Code:
echo “SCGIMount /RPC2 127.0.0.1:5000” >> /etc/httpd/conf/httpd.conf
service httpd restart

In additional, check this link too.
 
You will require the apache mod_scgi module which is not available from the CentOS repositories
Code:
rpm –ivh http://dl.fedoraproject.org/pub/epel/5/x86_64/mod_scgi-1.13-1.el5.x86_64.rpm
Install the mod_scgi module for Apache
Code:
echo “SCGIMount /RPC2 127.0.0.1:5000” >> /etc/httpd/conf/httpd.conf
service httpd restart

In additional, check this link too.

When i try to install the http://dl.fedoraproject.org/pub/epel/5/x86_64/mod_scgi-1.13-1.el5.x86_64.rpm i get the following errors:

error: Failed dependencies:
httpd-mmn = 20051115 is needed by mod_scgi-1.13-1.el5.x86_64
python(abi) = 2.4 is needed by mod_scgi-1.13-1.el5.x86_64

The httpd-mmn is installed with yum, but the python version i have is not the required 2.4 but 2.6. So i guess i should downgrade or just install python 2.4 but how..

plz put me in the right direction
 
Back
Top