- Following prerequisites have to be met:
- Install Oracle JDK / Open JDK 8
- Install Maven (check with mvn -version if jdk 8 is correctly setup / change JAVA_HOME if not)
- Install Docker
- Checkout the following repository https://github.com/cloudogu/docker-sample-ldap
- build the container
docker build -t usermgt/ldap .
- run the container
docker run --rm -p 389:389 usermgt/ldap
export UNIVERSEADM_STAGE=DEVELOPMENT
./mvnw clean install
mvn -DskipTests -P'!webcomponents' package jetty:run-war
http://localhost:8084/universeadm/
- Use Base Authentication
User: admin | Password: admin
- Bind the ldap port to the host system (e.g https://stackoverflow.com/questions/19335444/how-do-i-assign-a-port-mapping-to-an-existing-docker-container)
- alternative way add ExposedPorts to the
dogu.json
and rebuild the container
- alternative way add ExposedPorts to the
- Change the
ldap.xml
configuration make sure the passwort is ciphered.- easy solution jump inside the usermgt container and copy the
ldap.xml
- alternative solution use the
cipher.sh
inside the usermgt container/opt/apache-tomcat/webapps/usermgt/WEB-INF/cipher.sh encrypt <PASSWORD>
- easy solution jump inside the usermgt container and copy the