• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting SOLVED: SSO plugin lost randomly

     
    • 0 Vote(s) - 0 Average

    SOLVED: SSO plugin lost randomly

    SSO plugin disappears randomly and I need to reinstall it
    the-bort-the
    Offline

    Junior Member

    Posts: 12
    Threads: 4
    Joined: 2024 Feb
    Reputation: 0
    Country:United States
    #1
    2025-01-31, 02:52 PM
    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
    Go to solution
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2025-01-31, 05:05 PM
    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.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    the-bort-the
    Offline

    Junior Member

    Posts: 12
    Threads: 4
    Joined: 2024 Feb
    Reputation: 0
    Country:United States
    #3
    2025-01-31, 05:42 PM
    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
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #4
    2025-01-31, 05:48 PM
    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.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    the-bort-the
    Offline

    Junior Member

    Posts: 12
    Threads: 4
    Joined: 2024 Feb
    Reputation: 0
    Country:United States
    #5
    2025-01-31, 07:21 PM
    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.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2025-01-31, 07:45 PM
    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/
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    the-bort-the
    Offline

    Junior Member

    Posts: 12
    Threads: 4
    Joined: 2024 Feb
    Reputation: 0
    Country:United States
    #7
    2025-02-03, 02:20 AM
    I was able to save some of the directories, but not all. Lesson to take a backup before blinding rebuilding the containers. Luckily it was only a couple of users and the SSO information for Authentik.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode