![]() |
SOLVED: Music folder not 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: SOLVED: Music folder not found (/t-solved-music-folder-not-found) |
Music folder not found - perkunas - 2025-04-02 I got jellyfin working fine, except my music. When I open it its empty, but I have 1 album in there. I tried refreshing and still nothing. My path should be correct everything else works except music. I did get this in the log [2025-04-02 22:48:32.021 +00:00] [WRN] [75] MediaBrowser.Controller.Entities.BaseItem: Library folder "/data/music" is inaccessible or empty, skipping [2025-04-02 22:48:32.021 +00:00] [WRN] [75] MediaBrowser.Controller.Entities.BaseItem: Library folder "/config/data/data/playlists" is inaccessible or empty, skipping [2025-04-02 22:48:32.026 +00:00] [WRN] [79] MediaBrowser.Controller.Entities.BaseItem: Library folder "/data/music" is inaccessible or empty, skipping [2025-04-02 22:48:32.026 +00:00] [WRN] [79] MediaBrowser.Controller.Entities.BaseItem: Library folder "/config/data/data/playlists" is inaccessible or empty, skipping I'm lost everything works but music, the file is open to everyone. RE: Music folder not found - TheDreadPirate - 2025-04-03 Looks like Jellyfin running in a container, correct? What is the host OS? Can you share your docker compose? Is the music located on a network share? Or a local hard drive? RE: Music folder not found - perkunas - 2025-04-03 Thanks for the help. I'm using Openmediavault this is based on Debian. The jellyfin is in a docker container. Here is the docker compose --- # https://hub.docker.com/r/linuxserver/jellyfin services: jellyfin: image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin environment: - PUID=1000 - PGID=998 - TZ=America/Tornto - JELLYFIN_PublishedServerUrl=192.168.0.5 #optional volumes: - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/library ![]() - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/shows ![]() - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/movies ![]() - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music ![]() - /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/musicvideo ![]() group_add: - "105" devices: - /dev/dri:dev/dri ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped RE: Music folder not found - TheDreadPirate - 2025-04-03 Share the output of these commands. Code: ls -ld /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06 /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music The repeats are on purpose. RE: Music folder not found - perkunas - 2025-04-03 Code: root@NAS:~# ls -ld /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06 /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music RE: Music folder not found - TheDreadPirate - 2025-04-03 Code: getfacl /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music/puciavejas RE: Music folder not found - perkunas - 2025-04-03 root@192.168.0.25's password: Linux NAS 6.12.12+bpo-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.12-1~bpo12+1 (2025-02-23) x86_64 The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Thu Apr 3 18:54:33 2025 from 192.168.0.14 root@NAS:~# getfacl /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music/puciavejas getfacl: Removing leading '/' from absolute path names # file: srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin # owner: nobody # group: users user::rwx user:nobody:rwx group::rwx RE: Music folder not found - TheDreadPirate - 2025-04-04 Hmmmm. I think this command will fix the problem. Code: sudo chgrp -R users /srv/dev-disk-by-uuid-e21f8585-562f-4155-9308-67a413b9dc06/peter/jellyfin/music Then scan your library. RE: Music folder not found - perkunas - 2025-04-04 Thanks that worked, I owe you a beer. |