You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 14, 2024. It is now read-only.
var ldapjs = require("ldapjs");
var ldapUrl='ldaps://lunar:636';
var client = ldapjs.createClient({
url: ldapUrl
});
but this thow err:
events.js:85
throw er; // Unhandled 'error' event
^
Error: unable to verify the first certificate
at Error (native)
at TLSSocket. (_tls_wrap.js:929:36
at TLSSocket.emit (events.js:104:17)
at TLSSocket._finishInit (_tls_wrap.js:460:8)
The text was updated successfully, but these errors were encountered:
It appears that the certificate of the server you're connecting to is not signed by a CA your system trusts. (Or lacks an appropriate cert chain.) Please confirm that the server SSL is configured properly and/or specify the necessary TLS options to extend your trust to the server.
var ldapjs = require("ldapjs");
var ldapUrl='ldaps://lunar:636';
var client = ldapjs.createClient({
url: ldapUrl
});
but this thow err:
events.js:85
throw er; // Unhandled 'error' event
^
Error: unable to verify the first certificate
at Error (native)
at TLSSocket. (_tls_wrap.js:929:36
at TLSSocket.emit (events.js:104:17)
at TLSSocket._finishInit (_tls_wrap.js:460:8)
The text was updated successfully, but these errors were encountered: