this post was submitted on 11 Sep 2024
13 points (100.0% liked)

Jellyfin: The Free Software Media System

5572 readers
13 users here now

Current stable release: 10.9.7

Community Standards

Website

Forum

GitHub

Documentation

Feature Requests

Matrix (General Information & Help)

Matrix (Announcements)

Matrix (General Development)

Matrix (Off-Topic) - Come get to know the team and blow off steam!

Matrix Space - List of all the available rooms on Matrix.

Discord - Bridged to our Matrix rooms

founded 4 years ago
MODERATORS
 

Using the android client app and I tried to connect to my new server (first time setup). When I tap "Choose server" I can see the server name and local IP (192.168.0.5). When I tap on it, it won't connect. What am I probably doing wrong?

Edit: the app uses a default address, although it identifies the name of the server I set up. I checked the WiFi settings on the machine and the server is 192.168.1.60. I used this and it worked immediately.

Thanks for the help! I was able to eliminate some things, and learned some important things.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] rudyharrelson@lemmy.radio 3 points 6 days ago* (last edited 6 days ago) (1 children)

Hmm, have you made any changes to the firewall on the system hosting the Docker container?

You might need to edit the firewall with a something like this:

sudo ufw allow from 192.168.1.0/24 to any port 8096

Are you using docker-compose to run the Jellyfin service? If so, you might need to add something like this to the docker-compose.yml file:

network_mode: 'host'
extra_hosts:
      - "host.docker.internal:host-gateway"

I'm no expert at Docker or UFW, but these are part of my Jellyfin setup, which I'm running on Ubuntu LTS in a Docker container.

[โ€“] gedaliyah@lemmy.world 1 points 6 days ago

Hm, I tried both of these. Still no luck. Thanks!