Jellyfin Forum
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
<?xml version="1.0" encoding="utf-8"?>
<NetworkConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <BaseUrl />
  <EnableHttps>false</EnableHttps>
  <RequireHttps>false</RequireHttps>
  <InternalHttpPort>8096</InternalHttpPort>
  <InternalHttpsPort>8920</InternalHttpsPort>
  <PublicHttpPort>8096</PublicHttpPort>
  <PublicHttpsPort>8920</PublicHttpsPort>
  <AutoDiscovery>true</AutoDiscovery>
  <EnableUPnP>true</EnableUPnP>
  <EnableIPv4>true</EnableIPv4>
  <EnableIPv6>true</EnableIPv6>
  <EnableRemoteAccess>true</EnableRemoteAccess>
  <LocalNetworkSubnets />
  <LocalNetworkAddresses />
  <KnownProxies />
  <IgnoreVirtualInterfaces>true</IgnoreVirtualInterfaces>
  <VirtualInterfaceNames>
    <string>veth</string>
  </VirtualInterfaceNames>
  <EnablePublishedServerUriByRequest>false</EnablePublishedServerUriByRequest>
  <PublishedServerUriBySubnet />
  <RemoteIPFilter />
  <IsRemoteIPFilterBlacklist>false</IsRemoteIPFilterBlacklist>
</NetworkConfiguration>



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:
- ./JellyfinConfused-faceconfig
- ${MEDIA}Confused-facemedia
- ./tmpConfused-facetmp
- rcloneConfused-faceteldrive


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!!