Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

installing apache modules

Status
Not open for further replies.

jimberger

Programmer
Jul 5, 2001
222
GB
hi all,

How do I install apache modules? I want to install Auth ldap onto my apache server? I will be grateful for any help.

Regards

Jim
 
In order to install any modules into apache, you have to have both the driver (mod_ldap.so) and the source (mod_ldap.c). Once you have this, you then must alter the apache config file (httpd.conf) like so:

LoadModule ldap_module libexec/mod_ldap.so
AddModule mod_ldap.c

These must be placed at the top section of the config file. Last thing to do is restart the server. If you have problems still, you may need to recompile apache. Rninja

smlogo.gif

 
Hi,





There are various ldap modules for apache - if you do mean auth_ldap it would be similar to above (per rninja) except you'd actually need :





LoadModule auth_ldap_module libexec/auth_ldap.so


AddModule auth_ldap.c





The documentation is at --> .




If its not that exact module goto --> and type ldap in the search box.



Hope this helps




Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top