HackinDoge - Anyone successfully using LLDAP wi...
Anyone successfully using LLDAP with Jellyfin? I cannot for the life of me get it to work
This is the error I get when running "Save and Test LDAP Server Settings" in Jellyfin. To me its not a container network issue because I can ping the lldap container from the jellyfin container...
What's weird is the exact same connection details I'm trying to use with Jellyfin work just fine with Open WebUI...
35 Replies
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Thanks for the response. I’ll check to see if the Jellyfin container even includes nmap
I did curl lldap:3890 from both the OpenWebUI and Jellyfin containers and both returned the same - “Empty response from server”, which I guess is to be expected without the right connections params
I guess what I’m trying to determine is - is this a Jellyfin LDAP plugin issue, an LLDAP issue, or a skill issue?
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Do you get a message in the LLDAP logs when you try to log in from jellyfin?
When you curl, check the http response code
You can also try ldapsearch
I can’t tell, I think the OpenWebUI connection might be polluting the logs so will disconnect it first then try and see
ldapsearch isn’t in the Jellyfin container sadly
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
If I don’t get any logs when attempting to “test server connection” from Jellyfin, what could it be?? It’s weird bc I can ping the lldap container from the Jellyfin container so to me it isn’t a connectivity issue per se?
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Will do, appreciate both your replies and time
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
If you don't get logs, it means your query is not reaching LLDAP
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Check that the port is correct, that the host is the right one, that they're on the same network and so on
From within the jellyfin container...
How did you configure jellyfin, and are there any relevant logs?


Relevant Jellyfin log is at the beginning of the thread
Huh, well you've got me stumped... The ldapsearch command looks to do functionally the same thing as what you've configured jellyfin to do, so I'm not sure why one works but not the other...
Glad I’m not totally crazy lmao
This is my first foray into LDAP so I barely know what I’m doing and wasn’t sure if I made a newbie mistake, or if there was a known issue people knew about
The fact that these same connection details work with Open WebUI is also weird
And you ran ldapsearch from within the jellyfin container?
Correct, had to apt-get it as per the advice in this thread
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
If it's docker, an IP address would be unwieldy, but I guess good for debugging
It’s Docker 💀 I was thinking the same
I can try though!!
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Domain names are supposed to be the way to go with docker, but yeah...
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Hear hear 😂
Did that work?!
Oop sorry have yet to try it, was just agreeing with them
I’ll keep you posted, thanks all again for your eyes and time! 🙏
I’LL BE DAMNED IT DID WORK LMAO
So I guess… I should probably disable IPv6 on one or both ends…?
Definitely shouldn’t be hard coding or keeping track of Docker IPs I’d think
Why would Open WebUI work with just the hostname?? Is it that it handles IPv6 better?
ie would love to know if this needs to be a bug report on the Jellyfin side, would love to be able to just plug n play like with Open WebUI
I think jellyfin will redirect you to their LDAP library, but it's worth a try
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
Just to see, I recreated the container net with
--ipv6=false
and lo and behold, Jellyfin connects with just the lldap container hostname nowNow that I know root cause, I was able to search around and I guess this is a known issue? https://github.com/jellyfin/jellyfin-plugin-ldapauth/issues/125
GitHub
Error when using IPv6: System.Net.Sockets.SocketException (113): No...
I recently turned on IPv6 support in my docker setup, including the default network for my compose project (IPv4 addresses are still available), this resulted in the plugin being unable to connect ...
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View