![]() |
Library Disappears - 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: Library Disappears (/t-library-disappears) Pages:
1
2
|
RE: Library Disappears - missmintygreen - 2024-12-14 (2024-12-12, 01:52 PM)TheDreadPirate Wrote: That is not strictly necessary, since the cache folder is temporary data. But you can if you want. You can move files around anywhere you want on the host side, as long as you provide that new path to the container. Okay, so, the best way I thought to accomplish this was to remove the docker Jellyfin container and completely rebuild it with a docker compose file. It seems to have worked. Portainer is showing a container named Jellyfin with the correct config and cache paths, but now, I cannot reach Jellyfin on my local network. Here is the docker compose file: Code: services: But https://jellyfin.local and the address of my server with port 8096 gives me "This site can't be reached". Do I need to change the network_mode in the docker-compose.yml to the port? In the past, I know that worked, but I'm not sure why. RE: Library Disappears - TheDreadPirate - 2024-12-14 Can you share your jellyfin log via pastebin? /config/log/lo20241214.log I also recommend against bind mounts. Mainly because they sometimes cause issues. Change this Code: - type: bind To this Code: - /media/danielle/library/Movies:/Movies:ro RE: Library Disappears - missmintygreen - 2024-12-14 (2024-12-14, 11:03 PM)TheDreadPirate Wrote: Can you share your jellyfin log via pastebin? So, that log doesn't seem to exist. /config appears to be empty. When I start jellyfin and look at the logs on portainer, I keep seeing this repeated: Code: Unhandled exception. System.UnauthorizedAccessException: Access to the path '/config/log' is denied. RE: Library Disappears - TheDreadPirate - 2024-12-15 It's pretty clear what the issue is. Recursively chown /config so that your user owns it and all sub-directories. RE: Library Disappears - missmintygreen - 2024-12-15 (2024-12-15, 07:34 PM)TheDreadPirate Wrote: It's pretty clear what the issue is. Recursively chown /config so that your user owns it and all sub-directories. Okay, I chown'd the directory and restarted Jellyfin. Still nothing in the config directory, and here is what the logs on Portainer are saying: https://pastebin.com/L1sFtL7N Now, Jellyfin is accessible at the IP address and port that it had, before. Should I be concerned that the config directory is still empty? RE: Library Disappears - TheDreadPirate - 2024-12-15 Is portainer using the docker compose you provided? Or the config you put in the portainer UI? RE: Library Disappears - missmintygreen - 2024-12-15 (2024-12-15, 10:43 PM)TheDreadPirate Wrote: Is portainer using the docker compose you provided? Or the config you put in the portainer UI? The docker compose. |