Hi,
I am a new to trac and currently I am having issues getting trac configured with LDAPS authentication.
Earlier what was working on this Linux SUSE system was LDAP authentication:
AuthLDAPURL ldap://hq-dc2.usca.ibm.com:389/DC=filenet,DC=fn,DC=com?sAmAccountName?sub?(objectClass=user)
However, when the AuthLDAPURL was changed to LDAPS as below I get the following error:
AuthLDAPURL ldaps://bluepages.ibm.com/ou=bluepages,o=ibm.com?mail
Error:
[Tue Oct 23 18:34:15 2007] [warn] [client 9.30.66.112] [28891] auth_ldap authenticate: user aramachandran authentication failed;
URI /trac [LDAP: ssl connections not supported][Can't contact LDAP server]
Could someone please give me pointers to help solve the above issue?
Thanks, Arthi
AFAICT, this is not an issue related to Trac, but to LDAPS
authentication with Apache. You'll probably find more help on an
Apache user mailing list.
Cheers,
Manu
> URI /trac [LDAP: ssl connections not supported][Can't contact LDAP server]
Your ldap lib (which one?) lacks SSL support.
Here (openldap) it works with:
./configure --prefix=/usr/local/openldap-2.3.38 --with-tls \
--enable-shared CFLAGS=-I/usr/local/openssl/include/openssl \
LDFLAGS=-L/usr/local/openssl/lib
Rainer