• 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 Jellyfin not starting up after upgrading to 10.9.0

    Pages (3): 1 2 3 Next »

     
    • 0 Vote(s) - 0 Average

    Jellyfin not starting up after upgrading to 10.9.0

    Sarinz
    Offline

    Junior Member

    Posts: 3
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:India
    #1
    2024-05-12, 10:24 PM
    I got watchtower set up and it updated jellyfin docker image to 10.9.0 .
    jellyfin is running on:
    • docker
    • raspberry pi 4 (Raspberry pi os, arm 64 bit) 
    I had migrated from linux to docker by copying the metadata and other config directories and binding them to the container:
    • JELLYFIN_CACHE_DIR = /var/cache/jellyfin
    • JELLYFIN_CONFIG_DIR = /etc/jellyfin
    • JELLYFIN_DATA_DIR = /var/lib/jellyfin
    • JELLYFIN_FFMPEG = /usr/lib/jellyfin-ffmpeg/ffmpeg
    • JELLYFIN_LOG_DIR = /var/log/jellyfin
    • JELLYFIN_WEB_DIR = /jellyfin/jellyfin-web
    volumes:
    • /portainer/Files/AppData/Config/Jellyfin/cache = /var/cache/jellyfin
    • /portainer/Files/AppData/Config/Jellyfin/data = /var/lib/jellyfin
    • /portainer/Files/AppData/Config/Jellyfin/log = /var/log/jellyfin
    • /portainer/Files/AppData/Config/Jellyfin/config = /etc/jellyfin
    • 12f7f294e24e1638850e39836c5fcdd8e10211b828f8559b29ffe44bb785f356 = /config
    • f3266b47e63630fe8a8d14d90873601ffb0ad06b9789118164ad9ed876bf6977 = /cache
    • /mnt/hoarder = /mnt/hoarder
    • /mnt/hulk = /mnt/hulk

    after the upgrade I am getting this error
    Code:
    [21:41:35] [INF] Applying migration 'MigrateRatingLevels'
    [21:41:36] [INF] Library database backed up to /var/lib/jellyfin/data/library.db.bak40
    [21:41:36] [INF] Recalculating parental rating levels based on rating string.
    [21:41:37] [ERR] Could not apply migration 'MigrateRatingLevels'
    Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 11: 'database disk image is malformed'.
      at Microsoft.Data.Sqlite.SqliteException.ThrowExceptionForRC(Int32 rc, sqlite3 db)
      at Microsoft.Data.Sqlite.SqliteDataReader.NextResult()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader(CommandBehavior behavior)
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteNonQuery()
      at Emby.Server.Implementations.Data.SqliteExtensions.Execute(SqliteConnection sqliteConnection, String commandText)
      at Jellyfin.Server.Migrations.Routines.MigrateRatingLevels.Perform()
      at Jellyfin.Server.Migrations.MigrationRunner.PerformMigrations(IMigrationRoutine[] migrations, MigrationOptions migrationOptions, Action`1 saveConfiguration, ILogger logger)
    [21:41:37] [FTL] Error while starting server
    Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 11: 'database disk image is malformed'.
      at Microsoft.Data.Sqlite.SqliteException.ThrowExceptionForRC(Int32 rc, sqlite3 db)
      at Microsoft.Data.Sqlite.SqliteDataReader.NextResult()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader(CommandBehavior behavior)
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteNonQuery()
      at Emby.Server.Implementations.Data.SqliteExtensions.Execute(SqliteConnection sqliteConnection, String commandText)
      at Jellyfin.Server.Migrations.Routines.MigrateRatingLevels.Perform()
      at Jellyfin.Server.Migrations.MigrationRunner.PerformMigrations(IMigrationRoutine[] migrations, MigrationOptions migrationOptions, Action`1 saveConfiguration, ILogger logger)
      at Jellyfin.Server.Migrations.MigrationRunner.Run(CoreAppHost host, ILoggerFactory loggerFactory)
      at Jellyfin.Server.Program.StartServer(IServerApplicationPaths appPaths, StartupOptions options, IConfiguration startupConfig)
    [21:41:37] [INF] Running query planner optimizations in the database... This might take a while
    [21:41:37] [INF] Disposing CoreAppHost
    [21:41:37] [INF] Disposing MusicBrainzArtistProvider
    [21:41:37] [INF] Disposing MusicBrainzAlbumProvider
    [21:41:37] [INF] Disposing PluginManager

    I don't know what to do.. I have tried setting the image version to 10.8.13, but that gave many errors, It seemed that 10.9.0 update have changed a lot of things.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 11,852
    Threads: 10
    Joined: 2023 Jun
    Reputation: 347
    Country:United States
    #2
    2024-05-13, 01:18 AM
    Upgrading to 10.9 is one way. You cannot revert unless you restore from a backup.

    We JUST released 10.9.1 and I think one of the fixes is for this error you saw.

    Code:
    [21:41:36] [INF] Recalculating parental rating levels based on rating string.
    [21:41:37] [ERR] Could not apply migration 'MigrateRatingLevels'

    Try updating your image to 10.9.1 and see if that resolves this issue.
    Jellyfin 10.10.3 (Docker)
    Ubuntu 24.04 LTS 
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        3x WD Red Pro 6TB CMR in RAIDZ1 (JF Library)
    [Image: GitHub%20Sponsors-grey?logo=github]
    Sarinz
    Offline

    Junior Member

    Posts: 3
    Threads: 1
    Joined: 2024 May
    Reputation: 0
    Country:India
    #3
    2024-05-13, 07:38 AM
    I have updated the image to 10.9.1, but the issue persists
    Code:
    [07:26:03] [INF] Jellyfin version: 10.9.1
    [07:26:04] [INF] Environment Variables: ["[JELLYFIN_CACHE_DIR, /var/cache/jellyfin]", "[JELLYFIN_CONFIG_DIR, /etc/jellyfin]", "[JELLYFIN_LOG_DIR, /var/log/jellyfin]", "[DOTNET_SYSTEM_GLOBALIZATION_INVARIANT, 1]", "[JELLYFIN_WEB_DIR, /jellyfin/jellyfin-web]", "[JELLYFIN_FFMPEG, /usr/lib/jellyfin-ffmpeg/ffmpeg]", "[JELLYFIN_DATA_DIR, /var/lib/jellyfin]"]
    [07:26:04] [INF] Arguments: ["/jellyfin/jellyfin.dll", "--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"]
    [07:26:04] [INF] Operating system: Debian GNU/Linux 12 (bookworm)
    [07:26:04] [INF] Architecture: Arm64
    [07:26:04] [INF] 64-Bit Process: True
    [07:26:04] [INF] User Interactive: True
    [07:26:04] [INF] Processor count: 4
    [07:26:04] [INF] Program data path: /var/lib/jellyfin
    [07:26:04] [INF] Log directory path: /var/log/jellyfin
    [07:26:04] [INF] Config directory path: /etc/jellyfin
    [07:26:04] [INF] Cache path: /var/cache/jellyfin
    [07:26:04] [INF] Web resources path: /jellyfin/jellyfin-web
    [07:26:04] [INF] Application directory: /jellyfin/
    [07:26:04] [INF] Setting cache path: /var/cache/jellyfin
    [07:26:04] [INF] Loading assemblies
    [07:26:05] [INF] Loaded assembly Jellyfin.Plugin.AniDB, Version=7.0.0.0, Culture=neutral, PublicKeyToken=null from /var/lib/jellyfin/plugins/AniDB_7.0.0.0/Jellyfin.Plugin.AniDB.dll
    [07:26:05] [INF] Skipping disabled plugin 6.0.0.0 of Bookshelf
    [07:26:05] [INF] Skipping disabled plugin 8.0.0.0 of Bookshelf
    [07:26:05] [INF] Skipping disabled plugin 9.0.0.0 of Bookshelf
    [07:26:05] [INF] Skipping disabled plugin 10.0.0.0 of Bookshelf
    [07:26:05] [INF] Loaded assembly Jellyfin.Plugin.Fanart, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null from /var/lib/jellyfin/plugins/Fanart_10.0.0.0/Jellyfin.Plugin.Fanart.dll
    [07:26:05] [INF] Loaded assembly Jellyfin.Plugin.FinTube, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null from /var/lib/jellyfin/plugins/FinTube_1.0.0.0/Jellyfin.Plugin.FinTube.dll
    [07:26:05] [INF] Skipping disabled plugin 0.1.7.0 of Intro Skipper
    [07:26:05] [INF] Skipping disabled plugin 10.7.7.0 of Merge Versions
    [07:26:05] [INF] Skipping disabled plugin 10.8.0.1 of Merge Versions
    [07:26:05] [INF] Skipping disabled plugin 10.8.0.2 of Merge Versions
    [07:26:05] [INF] Skipping disabled plugin 1.0.0.0 of OPDS
    [07:26:05] [INF] Loaded assembly Jellyfin.Plugin.OpenSubtitles, Version=19.0.0.0, Culture=neutral, PublicKeyToken=null from /var/lib/jellyfin/plugins/Open Subtitles_19.0.0.0/Jellyfin.Plugin.OpenSubtitles.dll
    [07:26:05] [INF] Skipping disabled plugin 12.0.0.0 of Playback Reporting
    [07:26:05] [INF] Skipping disabled plugin 13.0.0.0 of Playback Reporting
    [07:26:05] [INF] Loaded assembly Jellyfin.Plugin.SkinManager, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null from /var/lib/jellyfin/plugins/Skin Manager_2.0.1/Jellyfin.Plugin.SkinManager.dll
    [07:26:05] [INF] Skipping disabled plugin 10.7.0.2 of Theme Songs
    [07:26:05] [INF] Skipping disabled plugin 10.8.0.1 of Theme Songs
    [07:26:05] [INF] Skipping disabled plugin 1.2103.2821.743 of TheMovieDb
    [07:26:05] [INF] Skipping disabled plugin 6.0.0.0 of TheTVDB
    [07:26:05] [INF] Skipping disabled plugin 8.0.0.0 of TheTVDB
    [07:26:05] [INF] Skipping disabled plugin 10.0.0.0 of TheTVDB
    [07:26:05] [INF] Skipping disabled plugin 7.2103.2821.743 of TMDb Box Sets
    [07:26:05] [INF] Skipping disabled plugin 10.0.0.0 of TMDb Box Sets
    [07:26:05] [INF] Skipping disabled plugin 1.0.3.9 of YoutubeMetadata
    [07:26:05] [INF] Defined LAN addresses: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
    [07:26:05] [INF] Defined LAN exclusions: []
    [07:26:05] [INF] Using LAN addresses: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
    [07:26:05] [INF] Using bind addresses: ["127.0.0.1", "172.17.0.5"]
    [07:26:05] [INF] Remote IP filter is Allowlist
    [07:26:05] [INF] Filter list: []
    [07:27:27] [INF] Loaded plugin: AniDB 7.0.0.0
    [07:27:27] [INF] Loaded plugin: Fanart 10.0.0.0
    [07:27:27] [INF] Loaded plugin: FinTube 1.0.0.0
    [07:27:27] [INF] Loaded plugin: Open Subtitles 19.0.0.0
    [07:27:27] [INF] Loaded plugin: Skin Manager 2.0.1
    [07:27:27] [INF] Loaded plugin: TMDb 10.9.1.0
    [07:27:27] [INF] Loaded plugin: Studio Images 10.9.1.0
    [07:27:27] [INF] Loaded plugin: OMDb 10.9.1.0
    [07:27:27] [INF] Loaded plugin: MusicBrainz 10.9.1.0
    [07:27:27] [INF] Loaded plugin: AudioDB 10.9.1.0
    [07:27:27] [INF] Applying migration 'MigrateRatingLevels'
    [07:27:28] [INF] Library database backed up to /var/lib/jellyfin/data/library.db.bak92
    [07:27:28] [INF] Recalculating parental rating levels based on rating string.
    [07:27:29] [ERR] Could not apply migration 'MigrateRatingLevels'
    Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 11: 'database disk image is malformed'.
      at Microsoft.Data.Sqlite.SqliteException.ThrowExceptionForRC(Int32 rc, sqlite3 db)
      at Microsoft.Data.Sqlite.SqliteDataReader.NextResult()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader(CommandBehavior behavior)
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteNonQuery()
      at Emby.Server.Implementations.Data.SqliteExtensions.Execute(SqliteConnection sqliteConnection, String commandText)
      at Jellyfin.Server.Migrations.Routines.MigrateRatingLevels.Perform()
      at Jellyfin.Server.Migrations.MigrationRunner.PerformMigrations(IMigrationRoutine[] migrations, MigrationOptions migrationOptions, Action`1 saveConfiguration, ILogger logger)
    [07:27:29] [FTL] Error while starting server
    Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 11: 'database disk image is malformed'.
      at Microsoft.Data.Sqlite.SqliteException.ThrowExceptionForRC(Int32 rc, sqlite3 db)
      at Microsoft.Data.Sqlite.SqliteDataReader.NextResult()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader(CommandBehavior behavior)
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader()
      at Microsoft.Data.Sqlite.SqliteCommand.ExecuteNonQuery()
      at Emby.Server.Implementations.Data.SqliteExtensions.Execute(SqliteConnection sqliteConnection, String commandText)
      at Jellyfin.Server.Migrations.Routines.MigrateRatingLevels.Perform()
      at Jellyfin.Server.Migrations.MigrationRunner.PerformMigrations(IMigrationRoutine[] migrations, MigrationOptions migrationOptions, Action`1 saveConfiguration, ILogger logger)
      at Jellyfin.Server.Migrations.MigrationRunner.Run(CoreAppHost host, ILoggerFactory loggerFactory)
      at Jellyfin.Server.Program.StartServer(IServerApplicationPaths appPaths, StartupOptions options, IConfiguration startupConfig)
    [07:27:29] [INF] Running query planner optimizations in the database... This might take a while
    [07:27:29] [INF] Disposing CoreAppHost
    [07:27:29] [INF] Disposing MusicBrainzArtistProvider
    [07:27:29] [INF] Disposing MusicBrainzAlbumProvider
    [07:27:29] [INF] Disposing PluginManager
    riddertommie
    Offline

    Junior Member

    Posts: 2
    Threads: 0
    Joined: 2024 May
    Reputation: 0
    Country:Netherlands
    #4
    2024-05-13, 08:21 AM (This post was last modified: 2024-05-13, 08:22 AM by riddertommie. Edited 1 time in total.)
    Same here, using Docker (linuxserver/jellyfin:latest) After yesterday update 10.9 no contact possible with jellyfin server. Normaly I wait for 1 or 2 days to see if tere is a update. This morning there was 10.9.1 but after updating stil no contact with server. I have 1 none related err in the log (i think).

    [10:06:33] [ERR] [1] Emby.Server.Implementations.Plugins.PluginManager: Failed to load assembly /config/data/plugins/Merge Versions_10.8.0.2/Jellyfin.Plugin.MergeVersions.dll. This error occurs when a plugin references an incompatible version of one of the shared libraries. Disabling plugin

    and some warnings

    [10:06:46] [WRN] [1] Microsoft.AspNetCore.DataProtection.Repositories.EphemeralXmlRepository: Using an in-memory repository. Keys will not be persisted to storage.
    [10:06:46] [WRN] [1] Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager: Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will be unavailable when application exits.
    [10:06:46] [WRN] [1] Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager: No XML encryptor configured. Key {42e09655-9daf-4a43-8afa-5a1979905d56} may be persisted to storage in unencrypted form.
    [10:06:49] [WRN] [1] Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware: The WebRootPath was not found: /run/s6-rc:s6-rc-init:EigKGL/servicedirs/svc-jellyfin/wwwroot. Static files may be unavailable.

    Don't know what to do here, any help welcome.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 11,852
    Threads: 10
    Joined: 2023 Jun
    Reputation: 347
    Country:United States
    #5
    2024-05-13, 12:06 PM
    @Sarinz Do you have a backup from 10.8.13?

    @riddertommie Can you share your full log?
    Jellyfin 10.10.3 (Docker)
    Ubuntu 24.04 LTS 
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        3x WD Red Pro 6TB CMR in RAIDZ1 (JF Library)
    [Image: GitHub%20Sponsors-grey?logo=github]
    Flaring0281
    Offline

    Junior Member

    Posts: 4
    Threads: 0
    Joined: 2024 May
    Reputation: 1
    Country:Netherlands
    #6
    2024-05-13, 01:03 PM
    (2024-05-13, 12:06 PM)TheDreadPirate Wrote: @Sarinz Do you have a backup from 10.8.13?

    @riddertommie Can you share your full log?

    I have the same problem as @riddertommie. Can't access Jellyfin even directly through port 8096. I'm using the official Docker image. No backups unfortunately. If I delete the /config and /cache folder, then the web UI and setup wizard loads successfully.

    docker-compose.yaml:
    Code:
    services:
      jellyfin:
        image: jellyfin/jellyfin
        container_name: jellyfin
        environment:
          - TZ=Europe/Amsterdam
        user: 1000:1000
        group_add:
          - 109
        volumes:
          - /home/me/mediaserver/jellyfin/config:/config
          - /home/me/mediaserver/jellyfin/cache:/cache
          - /media/mergerfs/Series:/media/TV
          - /media/mergerfs/Films:/media/Movies
          - /media/mergerfs/Boeken:/media/Books
        restart: 'unless-stopped'
        networks:
          mediaserv:
            ipv4_address: 172.27.0.100
        ports:
          - 8096:8096
        devices:
          - /dev/dri/renderD128:/dev/dri/renderD128

    networks:
      mediaserv:
        external: true

    Logs:

    Code:
    [2024-05-13 14:56:47.636 +02:00] [INF] [1] Main: Jellyfin version: "10.9.1"
    [2024-05-13 14:56:47.659 +02:00] [INF] [1] Main: Environment Variables: ["[JELLYFIN_FFMPEG, /usr/lib/jellyfin-ffmpeg/ffmpeg]", "[JELLYFIN_WEB_DIR, /jellyfin/jellyfin-web]", "[JELLYFIN_CONFIG_DIR, /config/config]", "[JELLYFIN_LOG_DIR, /config/log]", "[JELLYFIN_DATA_DIR, /config]", "[JELLYFIN_CACHE_DIR, /cache]"]
    [2024-05-13 14:56:47.660 +02:00] [INF] [1] Main: Arguments: ["/jellyfin/jellyfin.dll", "--ffmpeg", "/usr/lib/jellyfin-ffmpeg/ffmpeg"]
    [2024-05-13 14:56:47.661 +02:00] [INF] [1] Main: Operating system: "Debian GNU/Linux 12 (bookworm)"
    [2024-05-13 14:56:47.661 +02:00] [INF] [1] Main: Architecture: X64
    [2024-05-13 14:56:47.661 +02:00] [INF] [1] Main: 64-Bit Process: True
    [2024-05-13 14:56:47.661 +02:00] [INF] [1] Main: User Interactive: True
    [2024-05-13 14:56:47.661 +02:00] [INF] [1] Main: Processor count: 4
    [2024-05-13 14:56:47.662 +02:00] [INF] [1] Main: Program data path: "/config"
    [2024-05-13 14:56:47.662 +02:00] [INF] [1] Main: Log directory path: "/config/log"
    [2024-05-13 14:56:47.662 +02:00] [INF] [1] Main: Config directory path: "/config/config"
    [2024-05-13 14:56:47.662 +02:00] [INF] [1] Main: Cache path: "/cache"
    [2024-05-13 14:56:47.662 +02:00] [INF] [1] Main: Web resources path: "/jellyfin/jellyfin-web"
    [2024-05-13 14:56:47.662 +02:00] [INF] [1] Main: Application directory: "/jellyfin/"
    [2024-05-13 14:56:47.780 +02:00] [INF] [1] Emby.Server.Implementations.AppBase.BaseConfigurationManager: Setting cache path: "/cache"
    [2024-05-13 14:56:47.839 +02:00] [INF] [1] Emby.Server.Implementations.ApplicationHost: Loading assemblies
    [2024-05-13 14:56:47.873 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly "Jellyfin.Plugin.Bookshelf, Version=11.0.0.0, Culture=neutral, PublicKeyToken=null" from "/config/plugins/Bookshelf_11.0.0.0/Jellyfin.Plugin.Bookshelf.dll"
    [2024-05-13 14:56:47.875 +02:00] [ERR] [1] Emby.Server.Implementations.Plugins.PluginManager: Failed to load assembly "/config/plugins/InfuseSync_1.4.2.0/InfuseSync.dll". This error occurs when a plugin references an incompatible version of one of the shared libraries. Disabling plugin
    System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types.
    Could not load type 'MediaBrowser.Controller.Plugins.IServerEntryPoint' from assembly 'MediaBrowser.Controller, Version=10.9.1.0, Culture=neutral, PublicKeyToken=null'.
    Could not load type 'MediaBrowser.Controller.Plugins.IServerEntryPoint' from assembly 'MediaBrowser.Controller, Version=10.9.1.0, Culture=neutral, PublicKeyToken=null'.
    Could not load file or assembly 'SQLitePCL.pretty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.

      at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
      at System.Reflection.RuntimeModule.GetTypes()
      at Emby.Server.Implementations.Plugins.PluginManager.LoadAssemblies()+MoveNext()
    System.TypeLoadException: Could not load type 'MediaBrowser.Controller.Plugins.IServerEntryPoint' from assembly 'MediaBrowser.Controller, Version=10.9.1.0, Culture=neutral, PublicKeyToken=null'.
    System.TypeLoadException: Could not load type 'MediaBrowser.Controller.Plugins.IServerEntryPoint' from assembly 'MediaBrowser.Controller, Version=10.9.1.0, Culture=neutral, PublicKeyToken=null'.
    System.IO.FileNotFoundException: Could not load file or assembly 'SQLitePCL.pretty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'. The system cannot find the file specified.

    File name: 'SQLitePCL.pretty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'
    [2024-05-13 14:56:47.886 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly "SQLitePCL.pretty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" from "/config/plugins/Playback Reporting_14.0.0.0/SQLitePCL.pretty.dll"
    [2024-05-13 14:56:47.887 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly "Jellyfin.Plugin.PlaybackReporting, Version=14.0.0.0, Culture=neutral, PublicKeyToken=null" from "/config/plugins/Playback Reporting_14.0.0.0/Jellyfin.Plugin.PlaybackReporting.dll"
    [2024-05-13 14:56:47.888 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly "Jellyfin.Plugin.SkinManager, Version=1.5.0.0, Culture=neutral, PublicKeyToken=null" from "/config/plugins/Skin Manager_2.0.1/Jellyfin.Plugin.SkinManager.dll"
    [2024-05-13 14:56:47.891 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly "Jellyfin.Plugin.Tvdb, Version=11.0.0.0, Culture=neutral, PublicKeyToken=null" from "/config/plugins/TheTVDB_11.0.0.0/Jellyfin.Plugin.Tvdb.dll"
    [2024-05-13 14:56:47.898 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly "Tvdb.Sdk, Version=4.7.9.1, Culture=neutral, PublicKeyToken=null" from "/config/plugins/TheTVDB_11.0.0.0/Tvdb.Sdk.dll"
    [2024-05-13 14:56:47.953 +02:00] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN addresses: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
    [2024-05-13 14:56:47.953 +02:00] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN exclusions: []
    [2024-05-13 14:56:47.954 +02:00] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Using LAN addresses: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
    [2024-05-13 14:56:47.954 +02:00] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Using bind addresses: []
    [2024-05-13 14:56:47.954 +02:00] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Remote IP filter is "Allowlist"
    [2024-05-13 14:56:47.954 +02:00] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Filter list: []
    [2024-05-13 14:56:49.427 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "Bookshelf" "11.0.0.0"
    [2024-05-13 14:56:49.428 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "Playback Reporting" "14.0.0.0"
    [2024-05-13 14:56:49.429 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "Skin Manager" "2.0.1"
    [2024-05-13 14:56:49.430 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "TheTVDB" "11.0.0.0"
    [2024-05-13 14:56:49.431 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "TMDb" "10.9.1.0"
    [2024-05-13 14:56:49.431 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "Studio Images" "10.9.1.0"
    [2024-05-13 14:56:49.431 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "OMDb" "10.9.1.0"
    [2024-05-13 14:56:49.449 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "MusicBrainz" "10.9.1.0"
    [2024-05-13 14:56:49.450 +02:00] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: "AudioDB" "10.9.1.0"
    [2024-05-13 14:56:49.514 +02:00] [WRN] [1] Microsoft.AspNetCore.DataProtection.Repositories.EphemeralXmlRepository: Using an in-memory repository. Keys will not be persisted to storage.
    [2024-05-13 14:56:49.515 +02:00] [WRN] [1] Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager: Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will be unavailable when application exits.
    [2024-05-13 14:56:49.532 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: EventMonitorEntryPoint Running
    [2024-05-13 14:56:49.540 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Sqlite version: 3.41.2
    [2024-05-13 14:56:49.541 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Sqlite compiler options: ATOMIC_INTRINSICS=1,COMPILER=gcc-9.4.0,DEFAULT_AUTOVACUUM,DEFAULT_CACHE_SIZE=-2000,DEFAULT_FILE_FORMAT=4,DEFAULT_FOREIGN_KEYS,DEFAULT_JOURNAL_SIZE_LIMIT=-1,DEFAULT_MMAP_SIZE=0,DEFAULT_PAGE_SIZE=4096,DEFAULT_PCACHE_INITSZ=20,DEFAULT_RECURSIVE_TRIGGERS,DEFAULT_SECTOR_SIZE=4096,DEFAULT_SYNCHRONOUS=2,DEFAULT_WAL_AUTOCHECKPOINT=1000,DEFAULT_WAL_SYNCHRONOUS=2,DEFAULT_WORKER_THREADS=0,ENABLE_COLUMN_METADATA,ENABLE_FTS3,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS4,ENABLE_FTS5,ENABLE_MATH_FUNCTIONS,ENABLE_RTREE,ENABLE_SNAPSHOT,MALLOC_SOFT_LIMIT=1024,MAX_ATTACHED=10,MAX_COLUMN=2000,MAX_COMPOUND_SELECT=500,MAX_DEFAULT_PAGE_SIZE=8192,MAX_EXPR_DEPTH=1000,MAX_FUNCTION_ARG=127,MAX_LENGTH=1000000000,MAX_LIKE_PATTERN_LENGTH=50000,MAX_MMAP_SIZE=0x7fff0000,MAX_PAGE_COUNT=1073741823,MAX_PAGE_SIZE=65536,MAX_SQL_LENGTH=1000000000,MAX_TRIGGER_DEPTH=1000,MAX_VARIABLE_NUMBER=32766,MAX_VDBE_OP=250000000,MAX_WORKER_THREADS=8,MUTEX_PTHREADS,SYSTEM_MALLOC,TEMP_STORE=1,THREADSAFE=1
    [2024-05-13 14:56:49.553 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Default journal_mode for "/config/data/playback_reporting.db" is "delete"
    [2024-05-13 14:56:49.553 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Initialize PlaybackActivity Repository
    [2024-05-13 14:56:49.562 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: PlaybackActivity table schema OK
    [2024-05-13 14:56:49.562 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Expected : "datecreated:datetime|userid:text|itemid:text|itemtype:text|itemname:text|playbackmethod:text|clientname:text|devicename:text|playduration:int"
    [2024-05-13 14:56:49.562 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Received : "datecreated:datetime|userid:text|itemid:text|itemtype:text|itemname:text|playbackmethod:text|clientname:text|devicename:text|playduration:int"
    [2024-05-13 14:56:49.572 +02:00] [WRN] [1] Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager: No XML encryptor configured. Key {e631a97d-d5b1-4fce-9cf9-c7c6bdcd4a93} may be persisted to storage in unencrypted form.
    [2024-05-13 14:56:50.230 +02:00] [WRN] [1] Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware: The WebRootPath was not found: "/wwwroot". Static files may be unavailable.
    [2024-05-13 14:56:50.267 +02:00] [INF] [1] Emby.Server.Implementations.ApplicationHost: Running startup tasks
    [2024-05-13 14:56:50.269 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.TaskCleanDb: TaskCleanDb Loaded
    [2024-05-13 14:56:50.270 +02:00] [INF] [1] Jellyfin.Plugin.PlaybackReporting.TaskRunBackup: TaskRunBackup Loaded
    [2024-05-13 14:56:50.282 +02:00] [INF] [8] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory "/media/Movies"
    [2024-05-13 14:56:50.286 +02:00] [INF] [10] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory "/media/TV"
    [2024-05-13 14:56:50.294 +02:00] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for "Playback Reporting Trim Db" set to fire at 2024-05-14 00:00:00.000 +02:00, which is 09:03:09.7052852 from now.
    [2024-05-13 14:56:50.303 +02:00] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for "Trickplay-afbeeldingen genereren" set to fire at 2024-05-14 03:00:00.000 +02:00, which is 12:03:09.6969805 from now.
    [2024-05-13 14:56:50.308 +02:00] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for "Hoofdstukafbeeldingen uitpakken" set to fire at 2024-05-14 02:00:00.000 +02:00, which is 11:03:09.6915232 from now.
    [2024-05-13 14:56:50.315 +02:00] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for "Mediabibliotheek scannen" set to fire at 2024-05-14 00:00:00.000 +02:00, which is 09:03:09.6844006 from now.
    [2024-05-13 14:56:50.336 +02:00] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Found ffmpeg version "6.0.1"
    [2024-05-13 14:56:50.383 +02:00] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available "decoders": ["libdav1d", "av1", "av1_cuvid", "av1_qsv", "h264", "h264_qsv", "h264_cuvid", "hevc", "hevc_qsv", "hevc_cuvid", "mpeg2video", "mpeg2_qsv", "mpeg2_cuvid", "mpeg4", "mpeg4_cuvid", "msmpeg4", "vc1_qsv", "vc1_cuvid", "vp8", "libvpx", "vp8_cuvid", "vp8_qsv", "vp9", "libvpx-vp9", "vp9_cuvid", "vp9_qsv", "aac", "ac3", "dca", "flac", "mp3", "truehd"]
    [2024-05-13 14:56:50.400 +02:00] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available "encoders": ["libsvtav1", "av1_nvenc", "av1_qsv", "av1_amf", "av1_vaapi", "libx264", "h264_amf", "h264_nvenc", "h264_qsv", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_amf", "hevc_nvenc", "hevc_qsv", "hevc_vaapi", "mjpeg_qsv", "mjpeg_vaapi", "mpeg4", "msmpeg4", "libvpx", "libvpx-vp9", "aac", "libfdk_aac", "ac3", "alac", "dca", "flac", "libmp3lame", "libopus", "truehd", "libvorbis", "srt"]
    [2024-05-13 14:56:50.417 +02:00] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available filters: ["deinterlace_qsv", "deinterlace_vaapi", "hwupload_cuda", "hwupload_vaapi", "libplacebo", "overlay_opencl", "overlay_qsv", "overlay_vaapi", "overlay_vulkan", "overlay_cuda", "procamp_vaapi", "scale_cuda", "scale_opencl", "scale_qsv", "scale_vaapi", "scale_vulkan", "tonemap_cuda", "tonemap_opencl", "tonemap_vaapi", "vpp_qsv", "yadif_cuda", "zscale", "alphasrc"]
    [2024-05-13 14:56:50.507 +02:00] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available hwaccel types: ["cuda", "vaapi", "qsv", "drm", "opencl", "vulkan"]
    [2024-05-13 14:56:50.661 +02:00] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: FFmpeg: "/usr/lib/jellyfin-ffmpeg/ffmpeg"
    [2024-05-13 14:56:50.662 +02:00] [INF] [1] Emby.Server.Implementations.ApplicationHost: ServerId: "5c77490999f64ea3b24a3edc3e0f9013"
    [2024-05-13 14:56:50.662 +02:00] [INF] [1] Emby.Server.Implementations.ApplicationHost: Core startup complete
    [2024-05-13 14:56:50.662 +02:00] [INF] [1] Main: Startup complete 0:00:03.1769268
    [2024-05-13 14:56:53.333 +02:00] [INF] [11] Emby.Server.Implementations.ScheduledTasks.TaskManager: "Collecties en afspeellijsten opruimen" Completed after 0 minute(s) and 0 seconds
    [2024-05-13 14:56:54.506 +02:00] [INF] [17] Emby.Server.Implementations.ScheduledTasks.TaskManager: "Plug-ins bijwerken" Completed after 0 minute(s) and 1 seconds
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 11,852
    Threads: 10
    Joined: 2023 Jun
    Reputation: 347
    Country:United States
    #7
    2024-05-13, 01:55 PM
    Yours is starting up fine. Did you clear your browser cache? You can try to ncat your jellyfin server to verify that it is accessible.

    Code:
    chris@optimus-maximus:~$ nc -vz 192.168.1.3 8096
    Connection to 192.168.1.3 8096 port [tcp/*] succeeded!
    Jellyfin 10.10.3 (Docker)
    Ubuntu 24.04 LTS 
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        3x WD Red Pro 6TB CMR in RAIDZ1 (JF Library)
    [Image: GitHub%20Sponsors-grey?logo=github]
    modtx
    Offline

    Junior Member

    Posts: 2
    Threads: 0
    Joined: 2024 May
    Reputation: 0
    Country:Netherlands
    #8
    2024-05-13, 02:23 PM
    I think I might be having a similar issue to what is happening here.

    However I am running the linuxserverio image. Not sure if I should be asking here or there?

    I can't see anything in the logs that has gone wrong really but will post the logs here for clarity

    Code:
    Setting up openmp-extras-runtime (15.54.0.50401-84~20.04) ...
    Setting up libelf-dev:amd64 (0.186-1build1) ...
    Setting up rocm-opencl (2.0.0.50401-84~20.04) ...
    Setting up rocm-language-runtime (5.4.1.50401-84~20.04) ...
    Setting up rocm-opencl-runtime (5.4.1.50401-84~20.04) ...
    update-alternatives: using /opt/rocm-5.4.1/bin/clinfo to provide /usr/bin/clinfo (clinfo) in auto mode
    Processing triggers for libc-bin (2.35-0ubuntu3.7) ...
    [custom-init] No custom files found, skipping...
    [16:11:46] [INF] [1] Main: Jellyfin version: 10.9.1
    [16:11:46] [INF] [1] Main: Environment Variables: ["[JELLYFIN_CONFIG_DIR, /config]", "[JELLYFIN_CACHE_DIR, /config/cache]", "[JELLYFIN_LOG_DIR, /config/log]", "[JELLYFIN_DATA_DIR, /config/data]", "[JELLYFIN_WEB_DIR, /usr/share/jellyfin/web]"]
    [16:11:46] [INF] [1] Main: Arguments: ["/usr/lib/jellyfin/bin/jellyfin.dll", "--ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg"]
    [16:11:46] [INF] [1] Main: Operating system: Ubuntu 22.04.4 LTS
    [16:11:46] [INF] [1] Main: Architecture: X64
    [16:11:46] [INF] [1] Main: 64-Bit Process: True
    [16:11:46] [INF] [1] Main: User Interactive: True
    [16:11:46] [INF] [1] Main: Processor count: 12
    [16:11:46] [INF] [1] Main: Program data path: /config/data
    [16:11:46] [INF] [1] Main: Log directory path: /config/log
    [16:11:46] [INF] [1] Main: Config directory path: /config
    [16:11:46] [INF] [1] Main: Cache path: /config/cache
    [16:11:46] [INF] [1] Main: Web resources path: /usr/share/jellyfin/web
    [16:11:46] [INF] [1] Main: Application directory: /usr/lib/jellyfin/bin/
    [16:11:46] [INF] [1] Emby.Server.Implementations.AppBase.BaseConfigurationManager: Setting cache path: /config/cache
    [16:11:47] [INF] [1] Emby.Server.Implementations.ApplicationHost: Loading assemblies
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly Jellyfin.Plugin.PlaybackReporting, Version=14.0.0.0, Culture=neutral, PublicKeyToken=null from /config/data/plugins/Playback Reporting_14.0.0.0/Jellyfin.Plugin.PlaybackReporting.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly SQLitePCL.pretty, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null from /config/data/plugins/Playback Reporting_14.0.0.0/SQLitePCL.pretty.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly DocumentFormat.OpenXml, Version=2.16.0.0, Culture=neutral, PublicKeyToken=8fb06cb64d019a17 from /config/data/plugins/Reports_17.0.0.0/DocumentFormat.OpenXml.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly SixLabors.Fonts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=d998eea7b14cab13 from /config/data/plugins/Reports_17.0.0.0/SixLabors.Fonts.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly ClosedXML, Version=0.97.0.0, Culture=neutral, PublicKeyToken=fd1eb21b62ae805b from /config/data/plugins/Reports_17.0.0.0/ClosedXML.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly ExcelNumberFormat, Version=1.1.0.0, Culture=neutral, PublicKeyToken=23c6f5d73be07eca from /config/data/plugins/Reports_17.0.0.0/ExcelNumberFormat.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly Jellyfin.Plugin.Reports, Version=17.0.0.0, Culture=neutral, PublicKeyToken=null from /config/data/plugins/Reports_17.0.0.0/Jellyfin.Plugin.Reports.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly System.IO.Packaging, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a from /config/data/plugins/Reports_17.0.0.0/System.IO.Packaging.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly MQTTnet.Extensions.ManagedClient, Version=4.3.3.952, Culture=neutral, PublicKeyToken=fdb7629f2e364a63 from /config/data/plugins/Webhook_12.0.0.0/MQTTnet.Extensions.ManagedClient.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938 from /config/data/plugins/Webhook_12.0.0.0/BouncyCastle.Cryptography.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly Jellyfin.Plugin.Webhook, Version=12.0.0.0, Culture=neutral, PublicKeyToken=null from /config/data/plugins/Webhook_12.0.0.0/Jellyfin.Plugin.Webhook.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly MimeKit, Version=4.5.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814 from /config/data/plugins/Webhook_12.0.0.0/MimeKit.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly Handlebars, Version=2.1.6.0, Culture=neutral, PublicKeyToken=22225d0bf33cd661 from /config/data/plugins/Webhook_12.0.0.0/Handlebars.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly MQTTnet, Version=4.3.3.952, Culture=neutral, PublicKeyToken=fdb7629f2e364a63 from /config/data/plugins/Webhook_12.0.0.0/MQTTnet.dll
    [16:11:47] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded assembly MailKit, Version=4.5.0.0, Culture=neutral, PublicKeyToken=4e064fe7c44a8f1b from /config/data/plugins/Webhook_12.0.0.0/MailKit.dll
    [16:11:47] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN addresses: ["192.168.1.110/24"]
    [16:11:47] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN exclusions: []
    [16:11:47] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Using LAN addresses: ["192.168.1.110/24"]
    [16:11:47] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Using bind addresses: []
    [16:11:47] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Remote IP filter is Allowlist
    [16:11:47] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Filter list: []
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: Playback Reporting 14.0.0.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: Reports 17.0.0.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: Webhook 12.0.0.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: TMDb 10.9.1.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: Studio Images 10.9.1.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: OMDb 10.9.1.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: MusicBrainz 10.9.1.0
    [16:11:54] [INF] [1] Emby.Server.Implementations.Plugins.PluginManager: Loaded plugin: AudioDB 10.9.1.0
    [16:11:54] [WRN] [1] Microsoft.AspNetCore.DataProtection.Repositories.EphemeralXmlRepository: Using an in-memory repository. Keys will not be persisted to storage.
    [16:11:54] [WRN] [1] Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager: Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will be unavailable when application exits.
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: EventMonitorEntryPoint Running
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Sqlite version: 3.41.2
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Sqlite compiler options: ATOMIC_INTRINSICS=1,COMPILER=gcc-9.4.0,DEFAULT_AUTOVACUUM,DEFAULT_CACHE_SIZE=-2000,DEFAULT_FILE_FORMAT=4,DEFAULT_FOREIGN_KEYS,DEFAULT_JOURNAL_SIZE_LIMIT=-1,DEFAULT_MMAP_SIZE=0,DEFAULT_PAGE_SIZE=4096,DEFAULT_PCACHE_INITSZ=20,DEFAULT_RECURSIVE_TRIGGERS,DEFAULT_SECTOR_SIZE=4096,DEFAULT_SYNCHRONOUS=2,DEFAULT_WAL_AUTOCHECKPOINT=1000,DEFAULT_WAL_SYNCHRONOUS=2,DEFAULT_WORKER_THREADS=0,ENABLE_COLUMN_METADATA,ENABLE_FTS3,ENABLE_FTS3_PARENTHESIS,ENABLE_FTS4,ENABLE_FTS5,ENABLE_MATH_FUNCTIONS,ENABLE_RTREE,ENABLE_SNAPSHOT,MALLOC_SOFT_LIMIT=1024,MAX_ATTACHED=10,MAX_COLUMN=2000,MAX_COMPOUND_SELECT=500,MAX_DEFAULT_PAGE_SIZE=8192,MAX_EXPR_DEPTH=1000,MAX_FUNCTION_ARG=127,MAX_LENGTH=1000000000,MAX_LIKE_PATTERN_LENGTH=50000,MAX_MMAP_SIZE=0x7fff0000,MAX_PAGE_COUNT=1073741823,MAX_PAGE_SIZE=65536,MAX_SQL_LENGTH=1000000000,MAX_TRIGGER_DEPTH=1000,MAX_VARIABLE_NUMBER=32766,MAX_VDBE_OP=250000000,MAX_WORKER_THREADS=8,MUTEX_PTHREADS,SYSTEM_MALLOC,TEMP_STORE=1,THREADSAFE=1
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Default journal_mode for /config/data/data/playback_reporting.db is delete
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Initialize PlaybackActivity Repository
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: PlaybackActivity table schema OK
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Expected : datecreated:datetime|userid:text|itemid:text|itemtype:text|itemname:text|playbackmethod:text|clientname:text|devicename:text|playduration:int
    [16:11:54] [INF] [1] Jellyfin.Plugin.PlaybackReporting.Data.ActivityRepository: Received : datecreated:datetime|userid:text|itemid:text|itemtype:text|itemname:text|playbackmethod:text|clientname:text|devicename:text|playduration:int
    [16:11:54] [WRN] [1] Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager: No XML encryptor configured. Key {efbf40c6-879a-44d3-966b-e7a85b16940b} may be persisted to storage in unencrypted form.
    [16:11:55] [WRN] [1] Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware: The WebRootPath was not found: /run/s6-rc:s6-rc-init:PhpMPO/servicedirs/svc-jellyfin/wwwroot. Static files may be unavailable.
    [16:11:55] [INF] [1] Emby.Server.Implementations.ApplicationHost: Running startup tasks
    [16:11:55] [INF] [1] Jellyfin.Plugin.PlaybackReporting.TaskCleanDb: TaskCleanDb Loaded
    [16:11:55] [INF] [1] Jellyfin.Plugin.PlaybackReporting.TaskRunBackup: TaskRunBackup Loaded
    [16:11:55] [INF] [11] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory /data/...
    [16:11:55] [INF] [15] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory /data/...
    [16:11:55] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for Playback Reporting Trim Db set to fire at 2024-05-14 00:00:00.000 +02:00, which is 07:48:04.6808042 from now.
    [16:11:55] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for Generate Trickplay Images set to fire at 2024-05-14 03:00:00.000 +02:00, which is 10:48:04.5973169 from now.
    [16:11:55] [INF] [10] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory /data/...
    [16:11:55] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for Extract Chapter Images set to fire at 2024-05-14 02:00:00.000 +02:00, which is 09:48:04.4026653 from now.
    [16:11:55] [INF] [16] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory /data/...
    [16:11:55] [INF] [1] Emby.Server.Implementations.ScheduledTasks.TaskManager: Daily trigger for Scan Media Library set to fire at 2024-05-14 01:00:00.000 +02:00, which is 08:48:04.0841579 from now.
    [16:11:55] [INF] [8] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory /data/...
    [16:11:55] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Found ffmpeg version 6.0.1
    [16:11:56] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available decoders: ["libdav1d", "av1", "av1_cuvid", "av1_qsv", "h264", "h264_qsv", "h264_cuvid", "hevc", "hevc_qsv", "hevc_cuvid", "mpeg2video", "mpeg2_qsv", "mpeg2_cuvid", "mpeg4", "mpeg4_cuvid", "msmpeg4", "vc1_qsv", "vc1_cuvid", "vp8", "libvpx", "vp8_cuvid", "vp8_qsv", "vp9", "libvpx-vp9", "vp9_cuvid", "vp9_qsv", "aac", "ac3", "dca", "flac", "mp3", "truehd"]
    [16:11:56] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available encoders: ["libsvtav1", "av1_nvenc", "av1_qsv", "av1_amf", "av1_vaapi", "libx264", "h264_amf", "h264_nvenc", "h264_qsv", "h264_v4l2m2m", "h264_vaapi", "libx265", "hevc_amf", "hevc_nvenc", "hevc_qsv", "hevc_vaapi", "mjpeg_qsv", "mjpeg_vaapi", "mpeg4", "msmpeg4", "libvpx", "libvpx-vp9", "aac", "libfdk_aac", "ac3", "alac", "dca", "flac", "libmp3lame", "libopus", "truehd", "libvorbis", "srt"]
    [16:11:56] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available filters: ["deinterlace_qsv", "deinterlace_vaapi", "hwupload_cuda", "hwupload_vaapi", "libplacebo", "overlay_opencl", "overlay_qsv", "overlay_vaapi", "overlay_vulkan", "overlay_cuda", "procamp_vaapi", "scale_cuda", "scale_opencl", "scale_qsv", "scale_vaapi", "scale_vulkan", "tonemap_cuda", "tonemap_opencl", "tonemap_vaapi", "vpp_qsv", "yadif_cuda", "zscale", "alphasrc"]
    [16:11:56] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: Available hwaccel types: ["cuda", "vaapi", "qsv", "drm", "opencl", "vulkan"]
    [16:11:56] [INF] [1] MediaBrowser.MediaEncoding.Encoder.MediaEncoder: FFmpeg: /usr/lib/jellyfin-ffmpeg/ffmpeg
    [16:11:56] [INF] [1] Emby.Server.Implementations.ApplicationHost: ServerId: 71ba1eac62be4c50976c191d02760bce
    [16:11:56] [INF] [1] Emby.Server.Implementations.ApplicationHost: Core startup complete
    [16:11:56] [INF] [1] Main: Startup complete 0:00:10.2981215
    [16:11:56] [INF] [17] Emby.Server.Implementations.IO.LibraryMonitor: Watching directory /data/...
    [16:11:58] [INF] [8] Emby.Server.Implementations.ScheduledTasks.TaskManager: Clean up collections and playlists Completed after 0 minute(s) and 0 seconds
    [16:12:00] [INF] [15] Emby.Server.Implementations.ScheduledTasks.TaskManager: Update Plugins Completed after 0 minute(s) and 1 seconds
    [16:12:55] [INF] [17] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:13:25] [INF] [16] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:13:55] [INF] [11] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:14:25] [INF] [11] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:14:55] [INF] [14] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:15:25] [INF] [15] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:15:55] [INF] [14] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:16:25] [INF] [19] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:16:55] [INF] [17] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:17:25] [INF] [19] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds
    [16:17:55] [INF] [8] Emby.Server.Implementations.ScheduledTasks.TaskManager: Webhook Item Added Notifier Completed after 0 minute(s) and 0 seconds

    The last log just repeats the whole time for some reason

    I have tried stopping the container and running docker system prune -a and restarting it but I still cannot access the container at all.

    Any ideas?
    Flaring0281
    Offline

    Junior Member

    Posts: 4
    Threads: 0
    Joined: 2024 May
    Reputation: 1
    Country:Netherlands
    #9
    2024-05-13, 02:28 PM
    (2024-05-13, 01:55 PM)TheDreadPirate Wrote: Yours is starting up fine.  Did you clear your browser cache?  You can try to ncat your jellyfin server to verify that it is accessible.

    Code:
    chris@optimus-maximus:~$ nc -vz 192.168.1.3 8096
    Connection to 192.168.1.3 8096 port [tcp/*] succeeded!

    Fixed it by deleting config/config/network.xml. It seems to be binding to the correct IP address now.
    modtx
    Offline

    Junior Member

    Posts: 2
    Threads: 0
    Joined: 2024 May
    Reputation: 0
    Country:Netherlands
    #10
    2024-05-13, 02:32 PM
    (2024-05-13, 02:28 PM)Flaring0281 Wrote:
    (2024-05-13, 01:55 PM)TheDreadPirate Wrote: Yours is starting up fine.  Did you clear your browser cache?  You can try to ncat your jellyfin server to verify that it is accessible.

    Code:
    chris@optimus-maximus:~$ nc -vz 192.168.1.3 8096
    Connection to 192.168.1.3 8096 port [tcp/*] succeeded!

    Fixed it by deleting config/config/network.xml. It seems to be binding to the correct IP address now.

    You legend. This actually worked for me as well
    Pages (3): 1 2 3 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread:


    • 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