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!

apache 2.2.0 + LDAP

Status
Not open for further replies.

grantlaw

MIS
Dec 16, 2005
1
US
Hey,

I cannot get apache 2.2.0 to authenticate using LDAP, it doesn't even try to reach the LDAP server (netware LDAP), all I get are 500 errors.

I am using this to compile apache:

./configure --with-ldap-include=/usr/local/openldap/include/ --with-ldap-lib=/usr/local/openldap/lib --with-ldap=ldap --enable-ldap --enable-auth-ldap --enable-speling --enable-authnz-ldap


and this is from a <Directory> inside the .conf file:
(changed AuthzLDAPAuthoritative from AuthLDAPAuthoritative for the new version of apache)


Order deny,allow
Allow from all
AuthType Basic
AuthzLDAPAuthoritative On
AuthName "Enterprise Server"
AuthLDAPURL "ldap://x.x.x.x x.x.x.x/?cn"
require ldap-group cn=_cFP_xxxx, O=USA
require ldap-group cn=_cFP_xxxx, O=USA
require ldap-group cn=WORK_xxxx, O=USA
require ldap-group cn=int_ftp_xxxx, ou=fl, o=css




Used to use : ./configure --with-ldap-include=/usr/local/openldap/include/ --with-ldap-lib=/usr/local/openldap/lib --with-ldap=ldap --enable-ldap --enable-auth-ldap --enable-speling

to compile..



can anyone help?

Thanks :)

Grant
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top