• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting [Solved] Can't connect to server except through web client

    Pages (2): 1 2 Next »

     
    • 0 Vote(s) - 0 Average

    [Solved] Can't connect to server except through web client

    derFisch
    Offline

    Junior Member

    Posts: 1
    Threads: 1
    Joined: 2025 Mar
    Reputation: 0
    Country:United States
    #1
    2025-03-20, 07:11 AM (This post was last modified: 2025-03-20, 07:45 AM by derFisch. Edited 1 time in total.)
    Did as much searching as I could for this problem, and I couldn't find a solution that worked, so I'm here for help! Sorry in advance if this is just something I missed.

    I installed Jellyfin today with little to no issue, but for seemingly no reason I was unable to connect from any apps after a while. I had not touched the settings between watching something and the connection issues starting. I'm able to connect via the web client though, and in case that didn't confirm it, checking for port activity seems to indicate that the server is indeed online.

    [*]OS: Linux Mint 22.1 Cinnamon
    [*]Version: 10.10.6
    Install method: Debian repository
    Affected clients: Desktop (also deb), Android. When attempting to connect to the server, I get a fail to connect error message.

    Edit: It seems to have (mostly) fixed itself. Entering the full local IP seems to still not work, but using localhost:8096 and my public IP both seem to work, so I'm content. If someone feels like spending time helping me figure out that last issue though, I'd still appreciate it.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2025-03-20, 02:05 PM
    I see you found a workaround, but let's properly solve the issue.

    What is the output of this command?

    Code:
    sudo ufw status

    Can you share the contents of this file?

    Code:
    /etc/jellyfin/network.xml

    And can you share your full jellyfin logs via privatebin.net?

    Code:
    /var/log/jellyfin/log_20250320.log
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    1
    milosnik
    Offline

    Junior Member

    Posts: 6
    Threads: 0
    Joined: 2025 Apr
    Reputation: 0
    Country:Germany
    #3
    2025-04-18, 07:47 PM (This post was last modified: 2025-04-18, 09:44 PM by milosnik. Edited 2 times in total.)
    Hi.
    *]OS: Linux Mint 22.1 Cinnamon
    [*]Version: 10.10.6
    Install method: Debian repository

    I cann connect to server with 192.168.192:8096 and localhost:8096.
    but anothers divces (android phone, firestick) don't see server.
    i tried using ip from tailscale(i used this for nomachine).
    but this same. disable tailscale, nothing. antoher devices in this same lan network dont see jellyfin server


    ufw inactiv


    logfile
    Quote:https://privatebin.net/?9ce429816f5438d9...Wqzhqv51D5

    xml file
    https://privatebin.net/?3285b052cc490705...6DxzUmtzch
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2025-04-18, 09:24 PM
    UFW is a just a frontend for your actual firewall. Usually iptables or nftables. UFW being disabled just means that any rules made by UFW are not enabled.

    Run the following commands to enable and allow jellyfin through the firewall.

    Code:
    sudo ufw enable
    sudo ufw allow ssh  # to ensure that SSH is remotely accessible
    sudo ufw allow 8096

    Now other devices on your LAN should be able to access Jellyfin through the LAN IP of the server.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    milosnik
    Offline

    Junior Member

    Posts: 6
    Threads: 0
    Joined: 2025 Apr
    Reputation: 0
    Country:Germany
    #5
    2025-04-18, 09:57 PM
    still the same
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2025-04-18, 10:12 PM
    On the Android TV and Android clients, are you relying on service discovery? Or have you tried manually setting the address?

    You would need to add this UFW rule for service discovery to work.

    Code:
    sudo ufw allow 7359/udp

    I do see these messages a lot in your log.

    Code:
    [2025-04-18 21:35:57.318 +02:00] [INF] AuthenticationScheme: "CustomAuthentication" was challenged.
    [2025-04-18 21:36:57.251 +02:00] [INF] "CustomAuthentication" was not authenticated. Failure message: "Invalid token."
    [2025-04-18 21:36:57.252 +02:00] [INF] "CustomAuthentication" was not authenticated. Failure message: "Invalid token."

    The frequency of the messages tells me that your Android TV client is attempting to login with an expired token.

    If you do have tailscale running on the server, ensure that split tunneling is enabled. So that local traffic stays local and tailscale traffic can still connect. However, I don't see any indication that tailscale is running. Otherwise there would be an additional IP in the list of interfaces.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    milosnik
    Offline

    Junior Member

    Posts: 6
    Threads: 0
    Joined: 2025 Apr
    Reputation: 0
    Country:Germany
    #7
    2025-04-18, 10:27 PM
    I tried mannually and relying on service discovery. i don't see server.
    tailscale is now off.

    still the samew 
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #8
    2025-04-18, 10:47 PM
    On another PC on your home network, are you able to ping your server?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    milosnik
    Offline

    Junior Member

    Posts: 6
    Threads: 0
    Joined: 2025 Apr
    Reputation: 0
    Country:Germany
    #9
    2025-04-18, 10:54 PM
    yes. i tried ping from Laptop with windows 11 forks fine.
    Samba on Linux is works fine.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #10
    2025-04-19, 03:10 AM
    Did you original have Jellyfin on a Windows system? I noticed you appear to possibly have NFOs that are referencing Windows paths for images. Which makes me question how much of your Windows install you migrated to Linux.

    Can you clarify that question?

    If you did have Jellyfin on a prior Windows system, can you clear the app cache for both the Android and Android TV devices?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    Pages (2): 1 2 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode