Kevin Köllmann
Kevin Köllmann
Hi, I had exactly the same error message as the OP on my Dell notebook (`Operating System Loader signature found in SecureBoot exclusion database ('dbx').`). For me the following helped:...
Thanks @SBado, I had to modify your jq alternative a bit, because it failed when there are multiple domains in the `$domain_response` (`$id` then had multiple IDs in it and...
I have slightly updated the `jq` string in my comment above to mitigate an unlikely but possible error (see edited comment for details).
As the PR got merged this issue can be closed now I think. @wacki4 can you close this issue/mark it as resolved?
+1 When trying to view spent times it goes into an internal server error. I have tested it with redmine_tagging plugin only, too (no other plugins). Same error. The **production...
Hi, this happens because the TLS certificate used inside of the container is not trusted by your host OS (due to it being self-signed). You'll have to copy the `ca.crt`...
Oh, another method would be to create an `.ldaprc` file in your home directory and set `TLS_REQCERT never` in there. This tells ldapsearch (and the other LDAP cli tools) to...
I think you should use `LDAP_OPENLDAP_UID` and `LDAP_OPENLDAP_GID` as environment variables during runtime (not when building), so e.g.: ```bash $ docker run \ --name my_ldap_container \ -e LDAP_OPENLDAP_UID=1234 \ -e...
Hi, you can find the ACL which prevents non-admin users from reading any other entries than themselves here: [image/service/slapd/assets/config/bootstrap/ldif/02-security.ldif](https://github.com/osixia/docker-openldap/blob/master/image/service/slapd/assets/config/bootstrap/ldif/02-security.ldif). You will have to modify/replace these ACL(s) according to your needs,...
Hi, your LDIF seems to be invalid. There is a missing newline between your `dn: cn=mainuser,ou=People,dc=test,dc=org,dc=uk` and the `dn: cn=usergeneric,ou=People,dc=test,dc=org,dc=uk` entries. Also I think there has to be a space...