Multiple LDAP Servers with KCM
When using the docker version of KCM, you can list the multiple LDAP servers in your docker-compose.yml file using the environment variable LDAP_SERVERS in the environment section of the guacamole service, as shown below:
version: "3" services: guacamole: image: keeper/guacamole:2 restart: unless-stopped depends_on: - guacd - db environment: ACCEPT_EULA: "Y" GUACD_HOSTNAME: "guacd" LDAP_SERVERS: | - hostname: server1.example.net user-base-dn: OU=Users,DC=example,DC=net username-attribute: sAMAccountName search-bind-dn: CN=Guacamole,OU=Services,DC=example,DC=net search-bind-password: SomePassword! - hostname: server2.example.net user-base-dn: OU=Users,DC=example,DC=net username-attribute: sAMAccountName search-bind-dn: CN=Guacamole,OU=Services,DC=example,DC=net search-bind-password: SomePassword!
Using LDAP_SERVERS will automatically create /etc/guacamole/ldap-servers.yml within the guacamole container.
Last updated 6 months ago
Was this helpful?
This site uses cookies to deliver its service and to analyze traffic. By browsing this site, you accept the privacy policy.