SOLVED: i can't connect Finamp, Streamyfin, Fintunes or Gelly - 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: SOLVED: i can't connect Finamp, Streamyfin, Fintunes or Gelly (/t-solved-i-can-t-connect-finamp-streamyfin-fintunes-or-gelly) |
i can't connect Finamp, Streamyfin, Fintunes or Gelly - parz1va1 - 2024-12-15 Hi, thanks for your time and your help. I have a server of Jellyfin 10.10.3 on one Raspberry Pi 4 with docker. I can connect from my pc from http://192.168.1.39:8086, but I can't connect from my android phone to the same url, but I can connect the findroid and jellyfin android app work perfect but can't connect Finamp, Streamyfin, Fintunes or Gelly. Code: pi@raspberrypi:~/projects/jellyfin/Jellyfin/config $ cat network.xml RE: i can't connect Finamp, Streamyfin, Fintunes or Gelly - parz1va1 - 2024-12-15 This is my docker compose config jellyfin: image: jellyfin/jellyfin:latest expose: - 8096 # - 8920 ports: - 8096:8096 # - 8920:8920 environment: - TZ=America/Bogota - PUID=1000 - PGID=1000 volumes: - ./Jellyfinconfig - ${MEDIA}media - ./tmptmp - rcloneteldrive RE: i can't connect Finamp, Streamyfin, Fintunes or Gelly - TheDreadPirate - 2024-12-15 Remove the "expose" section of your docker compose. It isn't used since you are using "ports". Can you share your jellyfin logs via pastebin? RE: i can't connect Finamp, Streamyfin, Fintunes or Gelly - parz1va1 - 2024-12-15 Thanks a lot!! |