2024-07-21, 01:31 PM
This seems to be a pretty classic file permissions issue. You're doing your tests with the root user. Root can do basically anything it wants. You need to test with whatever user the jellyfin service is running as (probably
jellyfin
). ie: something similar to sudo -u jellyfin ls
or sudo -u jellyfin cat test.txt
. Most likely these will fail and you need to grant the jellyfin user permission to that directory.