Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add note in OpenLDAP slapd documentation about exposing ports
Per a suggestion from Duncan Brown add a note to the documentation
"Adding OpenLDAP for COmanage Registry" about exposing the
slapd ports.
skoranda committed May 28, 2020
1 parent 8e568af commit 37ebcdf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/adding-openldap.md
@@ -113,6 +113,17 @@ comanage-registry-ldap:
replicas: 1
```

COmanage Registry and OpenLDAP slapd can communicate directly using the default
network created by Docker Swarm when the service stack is instantiated. So it
is not necessary to expose the slapd port unless required for other services
that are not part of the stack to contact slapd. If you need to expose the slapd
port also add to the above

```
ports:
- "389:389"
```

* Be sure to also edit the services stack description file and add
the `olc_root_pw` secret to the list of secrets.

@@ -141,3 +152,12 @@ and then change the `command` above to be
```
command: ["slapd", "-d", "256", "-h", "ldapi:/// ldap:/// ldaps:///", "-u", "openldap", "-g", "openldap"]
```

If you need to expose the TLS endpoint in addition to port 389 also edit
the configuration of the ports in the services stack description (compose) file to be

```
ports:
- "389:389"
- "636:636"
```

0 comments on commit 37ebcdf

Please sign in to comment.