![]() |
Jellyfin IP Address - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Off Topic (https://forum.jellyfin.org/f-off-topic) +--- Forum: Self-hosting & Homelabs (https://forum.jellyfin.org/f-self-hosting-homelabs) +--- Thread: Jellyfin IP Address (/t-jellyfin-ip-address) |
Jellyfin IP Address - Auguss - 2025-03-30 I have searched all the Dashboard Settings and unable to find this setting to change the ip address of server to announce itself. I have also used grep 127.0.0.1 <installation directory config> and still unable to find the setting for this file. Linux Docker Jellyfin RE: Jellyfin IP Address - TheDreadPirate - 2025-03-30 Can you share your jellyfin logs via privatebin.net? And can you share your docker compose? RE: Jellyfin IP Address - Auguss - 2025-03-30 #!/bin/bash docker run -d \ --name jellyfin \ --hostname DVR \ --net=host \ --restart=unless-stopped \ --publish 8096:8096/tcp \ --publish 8920:8920/tcp \ --publish 1900:1900/udp \ --publish 7359:7359/udp \ --volume /dl/jellyfin/config ![]() --volume /dl/jellyfin/cache ![]() --volume /dl/letsencrypt ![]() --mount type=bind,source=/dvr/plex,target=/media \ --privileged \ --device=/dev/dri/renderD128 ![]() --device=/dev/dri/card0 ![]() --health-cmd="curl -fs --fail-early --no-keepalive --no-progress-meter <healthchecks> || exit 1" \ --health-interval=1h \ --health-timeout 60s \ --health-retries 15 \ jellyfin/jellyfin exit 0 Startup logs: [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN subnets: ["192.168.0.0/16", "172.17.0.0/16"] [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN exclusions: [] [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Used LAN subnets: ["192.168.0.0/16", "172.17.0.0/16"] [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Filtered interface addresses: ["127.0.0.1", "192.168.0.101", "172.17.0.1"] [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Bind Addresses ["0.0.0.0"] [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Remote IP filter is Allowlist [15:52:01] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Filtered subnets: []\ Full startup logs: https://privatebin.net/?5ff2a1431b16c8a5#H43Ds7zuHwa315mgMfTWxBr3DJ88gcx2T7iZ4jr26tzn RE: Jellyfin IP Address - TheDreadPirate - 2025-03-30 Upgrade to 10.10.6. There was a bug that caused the reported URL for service discovery to always be 127.0.0.1 that was fixed in 10.10.6. However, typing in the IP manually would also work. http://192.168.0.101:8096 RE: Jellyfin IP Address - Auguss - 2025-03-30 Yes, it does work. But the problem lies with I have to type it in Everytime as the Roku jellyfin seems not to remember it, only relay on Discovery for ease. RE: Jellyfin IP Address - Auguss - 2025-03-30 Forcefully updated and the same error occurs 10.10.6. https://privatebin.net/?c5ac950edd4e9131#5fvktMkShdwVvd1dZ8Bs2LCqRZ1vQ7P5YFgu865UDqFB RE: Jellyfin IP Address - TheDreadPirate - 2025-03-31 Did you put anything in Dashboard > Networking > Published URI? Also, the Roku app should remember you. I am pretty sure it is enabled by default, but in the Roku app click on your profile icon in the top right and click Settings > Global > Remember Me? If this is disabled, I believe the behavior will be what you're currently experiencing. |