Skip to content

AndriyKalashnykov/ldap-server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

build-test-push Hits License

Simple all-in-one LDAP server (wrapped ApacheDS) in Java.

You don't need any configuration files to get it working. Just launch the JAR and that's it. Server data are not persisted, they just live in memory.

Docker container

If you search a lightweight Docker container with LDAP server for your testing, you can use andriykalashnykov/apacheds-ad

docker pull andriykalashnykov/apacheds-ad:latest
docker run -it --rm andriykalashnykov/apacheds-ad:latest

Development

Pre-requisites

  • sdkman

    Install and use JDK 18

    sdk install java 18.0.1-tem
    sdk use java 18.0.1-tem
  • Apache Maven

    Install Apache Maven 3.8.5

    sdk install maven 3.8.5
    sdk use maven 3.8.5
  • git

git clone git://github.com/AndriyKalashnykov/ldap-server.git

or you can download current sources as a zip file

How to build it

You need to have Maven installed

mvn clean package

How to run it

java -jar ./target/ldap-server.jar ./target/classes/

Help

$ java -jar target/ldap-server.jar --help
The ldap-server is a simple LDAP server implementation based on ApacheDS. It
creates one user partition with root 'dc=jboss,dc=org'.

Usage: java -jar ldap-server.jar [options] [file1.ldif file2.ldif | /path/to/ldifs]

  Options:
    --allow-anonymous, -a
       allows anonymous bind to the server
       Default: false
    --bind, -b
       takes [bindAddress] as a parameter and binds the LDAP server on the
       address
       Default: 0.0.0.0
    --help, -h
       shows this help and exits
       Default: false
    --port, -p
       takes [portNumber] as a parameter and binds the LDAP server on that port
       Default: 10389
    --ssl-enabled-ciphersuite, -scs
       takes [sslCipherSuite] as argument and enables it for 'ldaps'. Can be
       used multiple times.
    --ssl-enabled-protocol, -sep
       takes [sslProtocolName] as argument and enables it for 'ldaps'. Can be
       used multiple times. If the argument is not provided following are used:
       TLSv1, TLSv1.1, TLSv1.2
    --ssl-keystore-file, -skf
       takes keystore [filePath] as argument. The keystore should contain
       privateKey to be used by LDAPs
    --ssl-keystore-password, -skp
       takes keystore [password] as argument
    --ssl-need-client-auth, -snc
       enables SSL 'needClientAuth' flag
       Default: false
    --ssl-port, -sp
       adds SSL transport layer (i.e. 'ldaps' protocol). It takes [portNumber]
       as a parameter and binds the LDAPs server on the port
    --ssl-want-client-auth, -swc
       enables SSL 'wantClientAuth' flag
       Default: false

   LDIFs to import: 
       - if empty then default LDIFs are used
       - one or more LDIF files separated by space will be imported
       - alternatively path to directory containing LDIFs can be provided

Examples:

$ java -jar ./target/ldap-server.jar ./target/classes/jboss-org.ldif
Starts LDAP server on port 10389 (all interfaces) and imports jboss-org.ldif

$ java -jar ./target/ldap-server.jar -sp 10636 ./target/classes/jboss-org.ldif
Starts LDAP server on port 10389 and LDAPs on port 10636 and imports the LDIF

$ java -jar ./target/ldap-server.jar -b 127.0.0.1 -p 389
Starts LDAP server on address 127.0.0.1:389 and imports default data (one user
entry 'uid=jduke,ou=Users,dc=jboss,dc=org'

SSL/TLS

If you want to enable SSL/TLS ('ldaps') and use your own certificate, the generate (or import) the private key into a JKS keystore and provide path to it as argument.

# generate a keypair
keytool -validity 365 -genkey -alias myserver -keyalg RSA -keystore /tmp/ldaps.keystore -storepass 123456 -keypass 123456 -dname cn=myserver.mycompany.com

# use the generated keypair (-skf) with given password (-skp)
# We also enable detail SSL debug information by setting javax.net.debug system property.
java -Djavax.net.debug=all -jar target/ldap-server.jar -sp 1038389 -skf /tmp/ldaps.keystore -skp 123456
version: 1

dn: dc=jboss,dc=org
dc: jboss
objectClass: top
objectClass: domain

dn: ou=Users,dc=jboss,dc=org
objectClass: organizationalUnit
objectClass: top
ou: Users

dn: uid=jduke,ou=Users,dc=jboss,dc=org
objectClass: top
objectClass: person
objectClass: inetOrgPerson
cn: Java Duke
sn: duke
uid: jduke
userPassword: theduke

dn: ou=Roles,dc=jboss,dc=org
objectclass: top
objectclass: organizationalUnit
ou: Roles

dn: cn=Admin,ou=Roles,dc=jboss,dc=org
objectClass: top
objectClass: groupOfNames
cn: Admin
member: uid=jduke,ou=Users,dc=jboss,dc=org

License

About

LDAP(ApacheDS) server in Java

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 94.2%
  • Shell 3.3%
  • Dockerfile 2.5%