Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have installed ldapauth using npm install ldapauth and i installed ldapjs. i tried with the following code

var sys   = require('sys'),
ldapauth  = require('./ldapauth'); 
var scheme    = 'ldap',
    ldap_host = 'abc.com',
    ldap_port = 369,
    username  = 'xxx',
    password  = 'xxx'
    base      = "DC=abc,DC=xyz,DC=com";
    filter    = "(&(objectclass=user)(sAMAccountName= 3025141))";
console.log("Authentication Check");
ldapauth.authenticate(scheme, ldap_host, ldap_port, username, password,
  function(err, result) {
      if (err) {
          console.log(err);
      } else {  
          console.log('Authenticated ! ! ! ! ! : ' + result);
      }
  });

//ldap authentication Search
ldapauth.search(ldap_host, ldap_port, username, password, base, filter,
  function(err, result) {
      if (err) {
        sys.puts(err);
      } else {
        sys.puts('Search: ' + JSON.stringify(result));
      }
  });

I tried in mac but I am getting Segmentation fault: 11 error. How can I fix this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.