| Andrew Blyler 2004-02-08, 11:46 am |
| When tring to use Apache 2.0.48 on Windows 2003 to authenticate users
in a Windows 2003 Active Directory LDAP server I get the following:
error.log
[Thu Jan 29 12:26:24 2004] [warn] [client 10.4.2.111] [4608] auth_ldap
authenticate: user ablyler authentication failed; URI /test/index.html
[ldap_search_ext_s() for user failed][Referral]
The following is a section of the config:
httpd.conf
<Directory />
Options FollowSymLinks
AllowOverride None
# LDAP Authentication & Authorization is final; do not check other
databases
AuthLDAPAuthoritative on
# Do basic password authentication in the clear
AuthType Basic
# The name of the protected area or "realm"
AuthName "Test Realm"
# Active Directory requires an authenticating DN to access records
AuthLDAPBindDN CN=service_account,DC=domain,DC=com
# This is the password for the AuthLDAPBindDN user in Active
Directory
AuthLDAPBindPassword service_account_password
# The LDAP query URL
AuthLDAPURL "ldaps://domain_controler.domain.com/DC=domain,DC=com?sAMAccountName?sub?(objectClass=*)"
</Directory>
<Directory "C:/Program Files/Apache Group/Apache2/htdocs/test">
AuthName "Special User Area"
require valid-user
</Directory>
Does anyone have any ideas of what is going on?
Thanks,
Andy Blyler
|