Open
Description
I'm trying to connect LDAP server using this code
ldap = new LDAP({
uri: 'ldaps://host:port',
base: 'o=base',
attrs: '*',
validatecert: false,
version: 3,
reconnect: true,
connecttimeout: -1, // seconds, default is -1 (infinite timeout), connect timeout
filter: '*', // default filter for all future searches
scope: LDAP.SUBTREE
}, function(err) {
if (err) console.log("Conn err: ", err);
});
and this gives me error :
{ [LDAPError: Timeout] name: 'LDAPError', message: 'Timeout' }
can you help?
Metadata
Metadata
Assignees
Labels
No labels