Can't find the mod_fcgid.so

Started by frme, February 12, 2014, 03:09:40 PM

Previous topic - Next topic

frme

Good afternoon!

I'm trying to build manually and install the mod_fcgid apache module. After proper configuration, making and installation I found that Apache can't locate the .so module, but in http.conf this shared module is mentioned. What I'm doing wrong? What option during making process of mod_fcgid module I missed?

Thanks in advance.

mario

Nope, you didn't miss a thing.

mod fcgid is not part of the standard modules from apache. You can find it here: https://httpd.apache.org/mod_fcgid/

if you still have a question please ask again.

frme

Thank you!

But I used exactly the version of mod_fcgid src you've mentioned. In its /modules/.libs/ directory I see only mod_fcgid.a static lib, a ref to the mod_fcgid.la located at parent dir and mod_fcgi.lai file. But can't find the mod_fcgid.so (

To build the stuff I used the following sequence of commands:

APXS=''path/to/my/locally/custom/build/apache's/apxs' ./configure
make
<sudo> make install.

I'm running ubuntu

It seems that I"m missing some build option but can't find out which exactly(

mario

I build fcgid direct from svn trunk. My apache is in /opt/apache2


svn checkout http://svn.apache.org/repos/asf/httpd/mod_fcgid/trunk mod_fcgid
cd mod_fcgid
APXS=/opt/apache2/bin/apxs ./configure.apxs
make
sudo make install
make clean


afer this the apxs script puts the so file directly in the /opt/apache2/modules folder.