logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Ldap authentication with Windows
Author
Marcelom



Joined: 22 Jul 2015
Posts: 1
Location: Luxembourg

PostPosted: Thu 23 Jul '15 10:35    Post subject: Ldap authentication with Windows Reply with quote

Hello

I try to do an URL authentication with LDAP in windows server and I have this error :

authentication failure for "/reports-all/test.html": Password Mismatch

My configuration is this:

AliasMatch ^/reports-all/(..*) "D:/philips2/www_root/temp/reports-all/$1"

<Directory "D:/philips2/www_root/temp">
Options Indexes
FollowSymLinks MultiViews
Order allow,deny
allow from all
AuthBasicProvider ldap
AuthType Basic
#AuthzLDAPAuthoritative on
AuthName " Server Authentication"
AuthLDAPURL "ldap://server:389/dc=dpa,dc=top?uid?sub?(objectClass=*)"
AuthLDAPBindDN "cn=name,dc=dpa,dc=top"
AuthLDAPBindPassword **********
require valid-user
LDAPReferrals Off
</Directory>

I loaded the modules

LoadModule ldap_module modules/mod_ldap.so
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so

Someone can help me find the mistake I am doing
Back to top


Reply to topic   Topic: Ldap authentication with Windows View previous topic :: View next topic
Post new topic   Forum Index -> Apache