Hi Guys
Can anyone let me know where IM goin wrong for the following httpd.conf file to access the subversion with LDAP and with apache2 configuration..
httpd.conf:
LoadModule auth_ldap_module modules/mod_auth_ldap.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
LoadModule ldap_module modules/mod_ldap.so
<Location>
DAV svn
SVNParentPath /repos
Require valid-user
AuthBasicProvider ldap
AuthType Basic
AuthName "CTG Development Server"
AuthLDAPURL ldap://ind.comp.com:389/dc=ind,dc=comp, ... ectClass=*)
AuthLDAPBindDN dc=IND42,dc=ind,dc=comp,dc=com
AuthLDAPBindPassword **********
</Location>
iam accessing the url as follows:
http://ip-addr/svn/repos
the error in the apache log file is as follows
[Tue Dec 05 11:09:45 2006] [warn] [client 127.0.0.1] [18630] auth_ldap authenticate: user gp24799 authentication failed; URI /svn/test [LDAP: ldap_simple_bind_s() failed][Invalid credentials]
[Tue Dec 05 11:09:45 2006] [error] [client 127.0.0.1] user gp24799: authentication failure for "/svn/test": Password Mismatch
now can anyone pls let me know where Im going wrong....
help would be gr8ly appreciable....