![]() |
docker Jellyfin not discoverable - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: docker Jellyfin not discoverable (/t-docker-jellyfin-not-discoverable) Pages:
1
2
|
docker Jellyfin not discoverable - r4Hui1S - 2024-01-12 Hi I try a lot of time to access over my SmartTV to Jellyfin. I use the IP Adress 192.168.10.x. <LocalNetworkSubnets> <string>192.168.10.0/24</string> </LocalNetworkSubnets> <LocalNetworkAddresses> <string>192.168.10.0/24</string> </LocalNetworkAddresses> But i dont see jellyfin - sample over my smartphone over VLC jellyfin. No Firewall is active or vlan is using. Have some advise for me ? Thanks RE: docker Jellyfin not discoverable - TheDreadPirate - 2024-01-12 What client are you using on your smart TV? A jellyfin client or DLNA? What networking type are you using for the container? I'm assuming host networking. When you say the firewall isn't active, do you mean that ufw isn't active? If so, UFW is just a frontend for iptables. It being inactive doesn't mean the firewall isn't still active. sudo ufw enable sudo ufw allow 1900 RE: docker Jellyfin not discoverable - r4Hui1S - 2024-01-12 Hi >What client are you using on your smart TV? A jellyfin client or DLNA? Samsung TV or/and VLC Android from Mobil Device. I use DLNA. i can access the WebGUI of Jellyfin and view/change something. Synology works fine as Multimedia Server for DLNA. >What networking type are you using for the container? I'm assuming host networking. by default setting. no changing by myself can you describe please exactly, which info more do you need ? >When you say the firewall isn't active, do you mean that ufw isn't active? If so, UFW is just a frontend for iptables. It being inactive doesn't mean the firewall isn't still active. i use unraid - actuly version and Docker Jellyfin Version: 10.8.13. I dont see anything about blocking ports/ip or that use ufw / firewall. thanks RE: docker Jellyfin not discoverable - TheDreadPirate - 2024-01-12 Can you share the docker config for Jellyfin? RE: docker Jellyfin not discoverable - r4Hui1S - 2024-01-12 could you please advise, which config file do you need ? network.xml ? RE: docker Jellyfin not discoverable - TheDreadPirate - 2024-01-12 Not sure how unraid works. But I need either screenshots of your Unraid UI for the Jellyfin container, or the docker compose file or docker parameters for the jellyfin container. RE: docker Jellyfin not discoverable - tmsrxzar - 2024-01-12 (2024-01-12, 08:26 PM)r4Hui1S Wrote: could you please advise, which config file do you need ? basically need to know the network config on "docker" like this; https://docs.linuxserver.io/images/docker-jellyfin/#usage or did you use a community build on synology or similar that facilitates a 1 click GUI? RE: docker Jellyfin not discoverable - r4Hui1S - 2024-01-12 root@Unraid1:~# docker network ls NETWORK ID NAME DRIVER SCOPE f475a4078c95 br0 ipvlan local dffad0715e08 bridge bridge local 11a803f71ec9 host host local 9495d8a7f28b none null local root@Unraid1:~# docker network inspect bridge [ { "Name": "bridge", "Id": "dffad0715e08a8556d9c94a1bfd068306e57432abb5cf6481131a21dccd2bbfd", "Created": "2024-01-12T09:44:06.643414507-08:00", "Scope": "local", "Driver": "bridge", "EnableIPv6": false, "IPAM": { "Driver": "default", "Options": null, "Config": [ { "Subnet": "172.17.0.0/16", "Gateway": "172.17.0.1" } ] }, "Internal": false, "Attachable": false, "Ingress": false, "ConfigFrom": { "Network": "" }, "ConfigOnly": false, "Containers": {}, "Options": { "com.docker.network.bridge.default_bridge": "true", "com.docker.network.bridge.enable_icc": "true", "com.docker.network.bridge.enable_ip_masquerade": "true", "com.docker.network.bridge.host_binding_ipv4": "0.0.0.0", "com.docker.network.bridge.name": "docker0", "com.docker.network.driver.mtu": "1500" }, "Labels": {} } ] ------------------------------------------------- Port Mapping 172.17.0.2:1900/UDP192.168.10.32:1900 172.17.0.2:7359/UDP192.168.10.32:7359 RE: docker Jellyfin not discoverable - TheDreadPirate - 2024-01-12 Those tell us about the networks, but not how the container is configured. I believe the command is Code: docker inspect jellyfin or replace jellyfin with the ID of your jellyfin container (can be obtained with docker ps). RE: docker Jellyfin not discoverable - r4Hui1S - 2024-01-13 Setting of Jellyfin Docker setup |