2025-09-30, 08:29 AM
(This post was last modified: 2025-09-30, 12:54 PM by Daniel_King. Edited 1 time in total.)
Hello,
I'm facing the issue that I can't save the metadata in to the media folder.
When checking the logs, i see the following error:
[2025-09-30 08:20:18.459 +00:00] [ERR] [42] MediaBrowser.Providers.Manager.ProviderManager: UnauthorizedAccessException - Access to path "/data/Dokus/Doku1/folder.jpg" is denied. Will retry saving to "/config/data/metadata/library/08/087af575f94a832e7a0a6e4feab5f3d3/poster.jpg"
I'm running Jellyfin in Docker on a Linux VM:
Docker:
uid=0(root) gid=0(root) groups=0(root)
Mounted media path:
drwxr-xr-x 1 root root 0 Sep 26 15:14 Dokus
Copying a simple text file to the media path work - so the right access should be given.
What am I missing here?
Thanks.
Edit:
I found a solution. I need to setup my rclone mount service like this:
--allow-other \
--uid 0 \
--gid 0 \
--dir-perms 0777 \
--file-perms 0666 \
And I also needed to remove the "--default-permissions \" setting.
I'm facing the issue that I can't save the metadata in to the media folder.
When checking the logs, i see the following error:
[2025-09-30 08:20:18.459 +00:00] [ERR] [42] MediaBrowser.Providers.Manager.ProviderManager: UnauthorizedAccessException - Access to path "/data/Dokus/Doku1/folder.jpg" is denied. Will retry saving to "/config/data/metadata/library/08/087af575f94a832e7a0a6e4feab5f3d3/poster.jpg"
I'm running Jellyfin in Docker on a Linux VM:
Docker:
uid=0(root) gid=0(root) groups=0(root)
Mounted media path:
drwxr-xr-x 1 root root 0 Sep 26 15:14 Dokus
Copying a simple text file to the media path work - so the right access should be given.
What am I missing here?
Thanks.
Edit:
I found a solution. I need to setup my rclone mount service like this:
--allow-other \
--uid 0 \
--gid 0 \
--dir-perms 0777 \
--file-perms 0666 \
And I also needed to remove the "--default-permissions \" setting.