https://github.com/lldap/lldap logo
qkie! - Heya, I'm running into trouble with lld...
# troubleshooting
q
Heya, I'm running into trouble with lldap in a docker container. The frontend is not loading anymore, it was definitely working some time ago (I have the container running for quite some time), but now the webinterface is not loading at all. nmap doesnt see an open port as well. docker-compose.yaml:
Copy code
version: "3"

services:
  lldap:
    image: lldap/lldap:stable
    container_name: lldap
    hostname: lldap
    ports:
      # For LDAP, not recommended to expose, see Usage section.
      #- "3890:3890"
      # For LDAPS (LDAP Over SSL), enable port if LLDAP_LDAPS_OPTIONS__ENABLED set true, look env below
      #- "6360:6360"
      # For the web front-end
      - "17170:17170"
    volumes:
      - "./data:/data"
    networks:
      - ldap
    environment:
      - TZ="Europe/Berlin"
      - LLDAP_JWT_SECRET=redacted;
      - LLDAP_KEY_SEED=redacted;
      - LLDAP_LDAP_BASE_DN=dc=redacted,dc=redacted

networks:
  ldap:
    name: ldap
    external: true
relevant part of data/lldap_config.toml:
Copy code
# verbose=false
ldap_host = "0.0.0.0"
ldap_port = 3890
http_host = "0.0.0.0"
http_port = 17170
http_url = "http://oops"
logs show no errors i'm positive it's a big me-problem but i can't seem to wrap my head around it
a
message has been deleted
q
As expected I screwed up: had to add the container to the default network as well to access the web interface keeping this thread in case somebody has the same problem
n
Thanks for the report and solution!