0

Try connecting with an LDAP client like JXplorer to validate that a LDAP instance is up an running at the host and port I think it is.

Also, trying to use any of the LDAP config data here:

But need the LDAP client to return a record.

Here's an example URI:

MORE_INFO: Just ask, not 100% sure what info I need to give to get help - thanks!

blunders
  • 813
  • 7
  • 14
  • 30

1 Answers1

1

Unless your LDAP client caches data, simply connecting to your domain name and port (389 or 636 for Active Directory), and then browsing containers and objects will tell you that LDAP is running.

I use ADExplorer primarily, and sometimes Apache Directory Explorer, and basically just connecting is enough to say that LDAP service is being provided...

Also running any query tool or script will validate for you. A few lines of Perl using Net::LDAP will validate you as well...

Please feel free to let me know if this doesn't answer your question.

gWaldo
  • 11,957
  • 8
  • 42
  • 69
  • **@gWaldo:** "Authentication with the LDAP server succeeded." -- You have no idea how happy those words made me... :-) ...thanks! – blunders Oct 22 '10 at 12:50
  • Glad I could help. I was about to put together a short perl script that just binds to LDAP, which is enough to tell you that it's working... – gWaldo Oct 22 '10 at 13:50