Jellyfin Forum
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


RE: Jellyfin isnt starting well or staying up well - TheDreadPirate - 2024-08-29

Do you have any reason to use the linuxserver image instead of the official image?

I spun up a linuxserver image, also saw the same "fontconfig" messages, but mine started anyway.

If you're ok with it, let's give the official image a try?  You'd need to adjust your docker compose a little bit.

Code:
version: '3.9'
services:
  jellyfin:
    image: jellyfin/jellyfin:latest
    container_name: jellyfin
    user: 1000:1000
    environment:
      - TZ=America/New_York
      - JELLYFIN_PublishedServerUrl=10.11.12.5 #optional
    volumes:
      - /mnt/gfs2/ezarr/config/jellyfin-config/config:/config
      - /mnt/gfs2/ezarr/config/jellyfin-config/cache:/cache
      - /mnt/omen/video/data:/data
    ports:
      - 8096:8096
      - 8920:8920 #optional
      - 7359:7359/udp #optional
      - 1900:1900/udp #optional
    restart: unless-stopped

Before you start up the new container, backup your current jellyfin-config folder and then clear it out and clean up your old images.

Code:
cp -pR /mnt/gfs2/ezarr/config/jellyfin-config /mnt/gfs2/ezarr/config/jellyfin-config-lsio
rm -rf /mnt/gfs2/ezarr/config/jellyfin-config/*

Now start the jellyfin container.


RE: Jellyfin isnt starting well or staying up well - TheCritic - 2024-09-02

I used that image because I would all of the other arr images I wanted there. If there is a better place, I am up for it.

Your changes corrected my issue. I guess in this case their image is just flawed some how.

Thanks for all of the help.


RE: Jellyfin isnt starting well or staying up well - farouq - 2024-09-29

any solution?