LDAP Server for development purposes on Windows 8

8

I need to test connectivity to LDAP from my application. I need something that I can easy install (preferred to be xcopy).

Years ago I was using Active Directory Application Mode (ADAM) for this purposes. But it does not supported on Windows 8. Gives me funny error message:

You do not have permission to update Windows. Please contact your system administrator.

Now, it looks like Active Directory Lightweight Directory Services (AD LDS). But again:

Installer encountered an error: 0x80096002
The certificate for the signer of the message is invalid or not found.

So two questions:

  1. Is it possible to use AD LDS on Windows 8
  2. Any other options? Quick search for example gives OpenLDAP.
.net
ldap
adam
adlds
asked on Stack Overflow May 16, 2013 by Mike Chaliy

4 Answers

7

If you have Windows 8 Pro, AD LDS is included to it. Go to Turn Windows features on or off, select Active Directory Light Weight Directory Services.

You can also use powershell

Enable-WindowsOptionalFeature -Online -FeatureName DirectoryServices-ADAM-Client
answered on Stack Overflow May 21, 2013 by Mike Chaliy
1

TurnKey Applience with OpenLDAP

http://www.turnkeylinux.org/openldap :)

answered on Stack Overflow May 16, 2013 by noetic
1

I ended with OpenLDAP for Windows, just because it does not require any dependencies.

I also added it to Chocolatey

cinst openldap
answered on Stack Overflow May 18, 2013 by Mike Chaliy
0

You can try ApacheDS. It was updated on May 2nd, 2013 so hope they tested it on Windows 8

answered on Stack Overflow May 16, 2013 by igoris

User contributions licensed under CC BY-SA 3.0