• 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 Jellyfin on Bigscreen VR

    Pages (3): 1 2 3 Next »

     
    • 0 Vote(s) - 0 Average

    Jellyfin on Bigscreen VR

    Trying to connect to Jellyfin server via DLNA on Bigscreen VR app
    bslaughter5
    Offline

    Junior Member

    Posts: 14
    Threads: 1
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #1
    2024-01-15, 11:12 PM
    Hello all,

    I'm looking for some help connecting to my Jellyfin server via DLNA on the Bigscreen VR app. The server is working because I can connect to it via mobile app and TV's. When trying to connect via the Bigscreen VR app, it does find the Jellyfin server, but does NOT let me connect to it. When I attempt connection, it gives the following message: "Error: Path couldn't be accessed."

    I'm wondering if this could be an authentication problem? Is there a way to ensure the server does not require authentication for remote connections? Any help/advice is much appreciated.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2024-01-15, 11:22 PM
    Can you describe your server setup?
    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]
    bslaughter5
    Offline

    Junior Member

    Posts: 14
    Threads: 1
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #3
    2024-01-15, 11:58 PM
    (2024-01-15, 11:22 PM)TheDreadPirate Wrote: Can you describe your server setup?


    I'm running a server with Ubuntu 22.04.3 installed with Jellyfin 10.8.13. This server and the headset with Bigscreen VR are both on the same network.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2024-01-16, 12:41 AM
    Did you open port 1900 on your server?

    sudo ufw allow 1900
    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]
    bslaughter5
    Offline

    Junior Member

    Posts: 14
    Threads: 1
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #5
    2024-01-16, 02:04 AM (This post was last modified: 2024-01-16, 02:52 AM by bslaughter5. Edited 1 time in total.)
    (2024-01-16, 12:41 AM)TheDreadPirate Wrote: Did you open port 1900 on your server?

    sudo ufw allow 1900

    I didn't........ I'll go test it now and update.
    bslaughter5
    Offline

    Junior Member

    Posts: 14
    Threads: 1
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #6
    2024-01-16, 02:40 AM
    (2024-01-16, 12:41 AM)TheDreadPirate Wrote: Did you open port 1900 on your server?

    sudo ufw allow 1900

    I just opened the port, restarted the server and still getting the same result.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #7
    2024-01-16, 03:00 AM
    Is UFW enabled? If you add rules but it isn't enabled it won't change anything.

    And you don't have Jellyfin running in Docker, right?
    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]
    bslaughter5
    Offline

    Junior Member

    Posts: 14
    Threads: 1
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #8
    2024-01-16, 04:38 AM (This post was last modified: 2024-01-16, 04:39 AM by bslaughter5. Edited 1 time in total.)
    (2024-01-16, 03:00 AM)TheDreadPirate Wrote: Is UFW enabled?  If you add rules but it isn't enabled it won't change anything.

    And you don't have Jellyfin running in Docker, right?

    UFW was not enabled. I enabled it and after rebooting the server, none of my clients could connect to the server(Phone, TV, Computer via web browser, Quest3). I disabled UFW, reboot, and back to where I was. Should I enable UFW again and troubleshoot from there?

    No, I dont have it running in a Docker.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #9
    2024-01-16, 04:49 AM
    sudo ufw enable
    sudo ufw allow 8096
    sudo ufw allow 1900
    sudo ufw allow 7359
    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]
    bslaughter5
    Offline

    Junior Member

    Posts: 14
    Threads: 1
    Joined: 2024 Jan
    Reputation: 0
    Country:United States
    #10
    2024-01-16, 04:58 AM
    (2024-01-16, 04:49 AM)TheDreadPirate Wrote: sudo ufw enable
    sudo ufw allow 8096
    sudo ufw allow 1900
    sudo ufw allow 7359

    I was just about to provide an update and say that after allowing default port I was able to get back in. Adding 7359 now.
    Pages (3): 1 2 3 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