Jellyfin Forum
No media found - 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: No media found (/t-no-media-found)

Pages: 1 2


RE: No media found - TheDreadPirate - 2023-08-30

Now that you turned off TVDB, can we get a fresh log?


RE: No media found - PrimeQRF - 2023-08-31

here are the new logs: https://pastebin.com/cZXurUsG


RE: No media found - bitmap - 2023-08-31

Well that looks clean AF. Good work. Could you post your compose file or your run command? It sees your mounts, no errors there, it's watching the dirs but it's not finding anything in them. Gotta be a config issue.


RE: No media found - PrimeQRF - 2023-08-31

Thanks lol. Here's my docker compose. Had to add a space in between the colon and forward slash because otherwise they turn into emojis on the fourms lmfao

---
version: "2.1"
services:
jellyfin:
image: linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=1000
- TZ=Time/zone
volumes:
- /home/soul/jellyfin: /config
- /dev/shm/JellyfinTranscode: /transcode
- /data/media: /data/media
ports:
- 8096:8096
restart: unless-stopped


RE: No media found - bitmap - 2023-09-01

Use code blocks (braces "[ ]" with the word code inside to start the block and /code to end the block) and paste your code in between.

Code:
Keeps formatting, changes font to monospace, truncates to \
    a reasonable amount of lines and columns.

That said, doesn't look complex. Could you ls -l both inside and outside the container? You should be able to just run the command instead of having to exec into the Jellyfin container but I'm on mobile at the moment so can't test. I'm interested in the perms on /data/media but also on at least one or two of the folders underneath. So both the permissions flags or string as well as the u/g owners.


RE: No media found - PrimeQRF - 2023-09-01

yeah so the perms look like this:

[code

soul@beachedthing:~$ ls -l /data/media/
total 32
drwxrwxrwx 5 soul soul 4096 Aug 30 03:51 anime
drwxrwxr-x 2 soul soul 4096 Jul 18 03:35 films
drwxrwxr-x 3 soul soul 20480 Jul 28 21:48 music
drwxrwxr-x 5 soul soul 4096 Jul 6 02:10 shows
soul@beachedthing:~$ ls -l /data/
total 8
drwxrwxr-x 6 soul soul 4096 May 31 21:07 media
drwxrwxr-x 6 soul soul 4096 Aug 30 04:39 torrents
soul@beachedthing:~$

/code]

I basically gave /anime all access perms so that maybe that was the issue but that didn't fix it