Jellyfin isnt starting well or staying up well - 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: Jellyfin isnt starting well or staying up well (/t-jellyfin-isnt-starting-well-or-staying-up-well) Pages:
1
2
|
Jellyfin isnt starting well or staying up well - TheCritic - 2024-08-24 Jellyfin seems to be just looping. I don't know what logs to look at to find more detail. The one I have attached doesn't help me find the problem, but I thought it might help you guys point me in the right direction. Log is attached to this post. Steps to reproduce: Docker Compose: jellyfin: image: lscr.io/linuxserver/jellyfin:latest container_name: jellyfin environment: - PUID=1000 - PGID=1000 - TZ=America/New_York - JELLYFIN_PublishedServerUrl=10.11.12.5 #optional volumes: - /mnt/gfs2/ezarr/config/jellyfin-configconfig - /mnt/omen/video/datadata ports: - 8096:8096 - 8920:8920 #optional - 7359:7359/udp #optional - 1900:1900/udp #optional restart: unless-stopped RE: Jellyfin isnt starting well or staying up well - TheDreadPirate - 2024-08-24 Code: Fontconfig error: No writable cache directories Make sure that all the folders under where you mounted /config are owned by UID 1000. RE: Jellyfin isnt starting well or staying up well - TheCritic - 2024-08-25 As you wish. (couldnt help it) Ran chown -R 1000 /config It worked. Restarted the service, checked it: root@ff0bb8832cc3# find /config -not -user 1000 -ls root@ff0bb8832cc3# Still the problem persists. New logs since the chown, look the same to me, but I'm posting incase you guys see something I didnt: RE: Jellyfin isnt starting well or staying up well - TheDreadPirate - 2024-08-25 You wouldn't use "1000" in the chown command. It would be the username that corresponds to UID 1000. RE: Jellyfin isnt starting well or staying up well - TheCritic - 2024-08-26 root@d9f3d8c69395# chown -R abc:abc /config root@d9f3d8c69395# ls -alh /config/ total 40K drwxr-xr-x 5 abc abc 4.0K Aug 25 15:37 . drwxr-xr-x 1 root root 4.0K Aug 25 15:37 .. drwxr-xr-x 3 abc abc 4.0K Aug 25 16:37 cache drwxr-xr-x 7 abc abc 4.0K Aug 25 15:37 data -rw-r--r-- 1 abc abc 2.4K Aug 25 15:37 encoding.xml drwxr-xr-x 2 abc abc 4.0K Aug 26 02:00 log -rw-r--r-- 1 abc abc 1.4K Aug 25 15:37 logging.default.json -rw-r--r-- 1 abc abc 3.1K Aug 25 15:37 migrations.xml -rw-r--r-- 1 abc abc 6.6K Aug 25 15:37 system.xml root@d9f3d8c69395# id abc uid=1000(abc) gid=1000(abc) groups=1000(abc),100(users) root@d9f3d8c69395# restarted service Problem Persists RE: Jellyfin isnt starting well or staying up well - TheCritic - 2024-08-26 Log files RE: Jellyfin isnt starting well or staying up well - TheDreadPirate - 2024-08-26 Run these commands. Code: sudo docker compose down jellyfin This will fully recreate the container (does not touch your /config or /data volumes). RE: Jellyfin isnt starting well or staying up well - TheCritic - 2024-08-28 Code: me@hp1:~/jellyfin$ sudo docker compose down jellyfin RE: Jellyfin isnt starting well or staying up well - TheDreadPirate - 2024-08-28 What is the output of Code: sudo docker exec jellyfin env RE: Jellyfin isnt starting well or staying up well - TheCritic - 2024-08-29 Code: me@hp1:~$ docker exec jellyfin env |