Skip to content

Update troubleshouting #49

@muisje

Description

@muisje

So i'm running jellyfin with this image jellyfin/jellyfin with docker. Currently on the lastest version 10.10.5.

First thing is that index.html is at another location. It's not at at /usr/share/jellyfin/web/index.html, but at /jellyfin/jellyfin-web/index.html. I guess that's because i'm using a docker container. Would be nice to to have if it could be stated that the index.html could be in one of these locations. Found the index.html by doing this:

docker exec -it jellyfin bash
find / -name index.html 2>/dev/null

I had this problem:

jellyfin  | [10:42:40] [ERR] [1] Namo.Plugin.InPlayerEpisodePreview.InPlayerEpisodePreviewPlugin: Encountered exception while writing to /jellyfin/jellyfin-web/index.html: System.UnauthorizedAccessException: Access to the path '/jellyfin/jellyfin-web/index.html' is denied.
jellyfin  |  ---> System.IO.IOException: Permission denied

Turns out my the ownership was wrong (set to root root).

solution:

Changing the ownership (replacing jellyfin with your containername, user and group with the user and group of your container)

docker exec -it --user root jellyfin chown user:group /jellyfin/jellyfin-web/index.html

After restarting the container the error is gone and the button shows up.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions