Jellyfin Forum
SSO plugin lost randomly - 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: SSO plugin lost randomly (/t-sso-plugin-lost-randomly)



SSO plugin lost randomly - the-bort-the - 2025-01-31

Looking to understand why sometimes my SSO plugin just disappears from my list of active, installed plugins. I don't use any other plugins. The ones that come as part of the container install seem to remain installed. 

I'm currently deploying this as a container and using version 10.10.3.

Once reinstalled the SSO plugin works fine

SSO-plugin: 3.5.2.4


RE: SSO plugin lost randomly - TheDreadPirate - 2025-01-31

Does this only happen when you upgrade Jellyfin versions or re-create the container? Can you share the config for your container? And if you still have a jellyfin log from the last time this happened, share that via privatebin.net.


RE: SSO plugin lost randomly - the-bort-the - 2025-01-31

It's entirely possible during a recreation of the container.


Code:
---
services:
  jellyfin:
    image: jellyfin/jellyfin:10.10.3
    container_name: jellyfin
    group_add:
      - "105"
    ports:
      - 8096:8096
      - 8920:8920/tcp
    volumes:
      - /jellyfin:/config
      - /jellyfin:/cache
      - /jellyfin_1:/jellyfin_1
      - /jellyfin_2:/jellyfin_2
      - /jellyfin_3:/jellyfin_3
    restart: unless-stopped
    networks:
      - authentik_net
      - jellyfin_net
      - traefik_network
    environment:
      - JELLYFIN_PublishedServerUrl=jellyfin.example.com
    extra_hosts:
      - "host.docker.internal:host-gateway"
    devices:
      - /dev/dri/renderD128:/dev/dri/renderD128

networks:
  authentik_net:
  jellyfin_net:
    name: jellyfin_net
  traefik_network:
    external: true



RE: SSO plugin lost randomly - TheDreadPirate - 2025-01-31

You need to provide separate folders on the host for /config and /cache. I'm pretty sure that, as currently configured, the cache cleanup job that runs once a day is blowing a lot of things away since /config and /cache are, essentially, intermingled.

Code:
volumes:
      - /jellyfin/config:/config
      - /jellyfin/cache:/cache

Like this.


RE: SSO plugin lost randomly - the-bort-the - 2025-01-31

ahh wow good catch. Change has been made. Guess I'll have to redo all the users and config, etc. I'll do some let it cook and see how the next few days are. I'm sure I can go find the user config, etc from the old config location.


RE: SSO plugin lost randomly - TheDreadPirate - 2025-01-31

You should be able to copy the appropriate folders in /jellyfin into their respective folders.

Code:
cache/:
total 20
drwxr-xr-x  5 jellyfin chris 4096 Oct  6 19:07 ./
drwxr-xr-x  4 jellyfin chris 4096 Oct  4 23:46 ../
drwxr-xr-x  2 jellyfin chris 4096 Jan 27 22:25 fontconfig/
drwxr-xr-x 12 jellyfin chris 4096 Jan 31 06:30 jellyfin/
drwxr-xr-x  2 jellyfin chris 4096 Oct  6 19:07 neo_compiler_cache/

config/:
total 168
drwxr-xr-x 10 jellyfin chris   4096 Oct  4 23:57 ./
drwxr-xr-x  4 jellyfin chris   4096 Oct  4 23:46 ../
drwxr-x---  5 jellyfin chris   4096 Oct 11 21:50 config/
drwxr-xr-x  9 jellyfin chris   4096 Jan 31 14:40 data/
drwxr-xr-x  2 jellyfin chris   4096 Jul 13  2024 liveTV/
drwxr-xr-x  2 jellyfin chris 131072 Jan 31 00:02 log/
drwxr-xr-x  8 jellyfin chris   4096 Nov 29 17:15 metadata/
drwxr-xr-x 18 jellyfin chris   4096 Jan  2 15:01 plugins/
drwxr-xr-x  3 jellyfin chris   4096 Aug 15  2023 root/
drwxr-xr-x  2 jellyfin chris   4096 Oct  4 23:47 transcodes/