mirror of
https://github.com/lldap/lldap.git
synced 2026-04-26 00:36:01 +03:00
[GH-ISSUE #548] Emby difference to example emby.md #200
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#200
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nomandera on GitHub (Apr 12, 2023).
Original GitHub issue: https://github.com/lldap/lldap/issues/548
Using the lldap guide as a template I could not make Emby users authenticate.
Whilst the guide recommends an admin user, since I do not need (or want) Emby to be able to create users, I went with a user called
readonlywhich is a member of onlylldap_strict_readonlyand all Emby users defined in a group calledemby.e.g.
I do not know if the use of
lldap_strict_readonlycreates this issue but Emby gives very clear logging that a Bind DN should be in the form above via a log message like:and will not work at all until you make this change.
@nitnelave commented on GitHub (Apr 12, 2023):
I think the main issue is that you're missing
ou=peoplein your bind DN. You have:cn=readonly,dc=example,dc=cominstead of
cn=readonly,ou=people,dc=example,dc=comDoes that work for you?
@nomandera commented on GitHub (Apr 12, 2023):
arg I am clearly blind. let me test this tonight and feedback asap
@nitnelave commented on GitHub (Apr 12, 2023):
Note: also switching from
cntouidis better for future compatibility.@nomandera commented on GitHub (Apr 12, 2023):
Just to confirm that as you expected fixing the typo and using the
cn=readonly,ou=people,dc=example,dc=comform also works for me.