2023-10-21, 04:36 PM
(This post was last modified: 2023-10-21, 04:54 PM by ayrus02. Edited 2 times in total.
Edit Reason: fix typo
)
(2023-10-21, 03:30 PM)000 Wrote:(2023-10-21, 03:23 PM)ayrus02 Wrote: Is there anyway I can enter some console using user of Jellyfin to verify that Jellyfin can access (read) the path and it's content?
if it's installed in docker
docker exec -it jellyfin /bin/bash
- (replace jellyfin with the name of your container)
if it's not in a docker
# su jellyfin
(replace jellyfin with the username for jellyfin)
OK, thanks for the help, I've resolve this problem by adding these options on mount command of SMB Share
Code:
uid=961,gid=962
and Jellyfin flawlessly can read the SMB share folder.
uid 961 is for jellyfin user in my server and gid 962 is group for jellyfin on my server. You can see what UID and GID for your jellyfin user by running this command:
Code:
# id jellyfin
uid=961(jellyfin) gid=962(jellyfin) groups=962(jellyfin),39(video),998(render)
Thanks to all of you for the help provided...
Regards.
ayrus02