2024-12-10, 06:20 AM
(This post was last modified: 2024-12-10, 06:29 AM by .meditate.. Edited 2 times in total.)
Hi there - any help on the below appreciated, I saw similar requests but nothing seems to have permanently solved the issue for me.
Overnight, without external influence Jellyfin stopped working and I'm unable to connect at all on any device. This happened yesterday too, and I did a total clean install which fixed the issue until last night where I'm now getting what looks like the same errors.
Running on OMV in a docker container through compose, Jellyfin version: 10.10.3
What I've done so far:
Relevant part of the log below - this just repeats over and over after loading the plugins.
Compose file also for info:
Overnight, without external influence Jellyfin stopped working and I'm unable to connect at all on any device. This happened yesterday too, and I did a total clean install which fixed the issue until last night where I'm now getting what looks like the same errors.
Running on OMV in a docker container through compose, Jellyfin version: 10.10.3
What I've done so far:
- Reboot system
- Remove docker container, checked no jellyfin instance running with docker ps
Relevant part of the log below - this just repeats over and over after loading the plugins.
Quote:jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Defined LAN exclusions: []
jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Used LAN subnets: ["127.0.0.1/8", "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16"]
jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Filtered interface addresses: ["127.0.0.1", "172.18.0.2"]
jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Bind Addresses ["0.0.0.0"]
jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Remote IP filter is Allowlist
jellyfin | [06:02:36] [INF] [1] Jellyfin.Networking.Manager.NetworkManager: Filtered subnets: []
jellyfin | [06:02:36] [FTL] [1] Main: Error while starting server
jellyfin | Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 8: 'attempt to write a readonly database'.
jellyfin | at Microsoft.Data.Sqlite.SqliteException.ThrowExceptionForRC(Int32 rc, sqlite3 db)
jellyfin | at Microsoft.Data.Sqlite.SqliteDataReader.NextResult()
jellyfin | at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader(CommandBehavior behavior)
jellyfin | at Microsoft.Data.Sqlite.SqliteCommand.ExecuteReader()
jellyfin | at Microsoft.Data.Sqlite.SqliteCommand.ExecuteNonQuery()
jellyfin | at Emby.Server.Implementations.Data.SqliteExtensions.Execute(SqliteConnection sqliteConnection, String commandText)
jellyfin | at Emby.Server.Implementations.Data.ManagedConnection.Execute(String commandText)
jellyfin | at Emby.Server.Implementations.Data.BaseSqliteRepository.Initialize()
jellyfin | at Emby.Server.Implementations.Data.SqliteItemRepository.Initialize()
jellyfin | at Emby.Server.Implementations.ApplicationHost.InitializeServices()
jellyfin | at Jellyfin.Server.Program.StartServer(IServerApplicationPaths appPaths, StartupOptions options, IConfiguration startupConfig)
jellyfin | [06:02:36] [INF] [1] Main: Running query planner optimizations in the database... This might take a while
jellyfin | [06:02:36] [INF] [1] Emby.Server.Implementations.ApplicationHost: Disposing CoreAppHost
jellyfin | [06:02:36] [INF] [1] Emby.Server.Implementations.ApplicationHost: Disposing PluginManager
Compose file also for info:
Quote:---
# https://hub.docker.com/r/linuxserver/jellyfin
services:
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin
environment:
- PUID=1000
- PGID=100
- TZ=Berlin/Europe
- DOCKER_MODS=linuxserver/mods:jellyfin-opencl-intel
devices:
- /dev/dri:/dev/dri
volumes:
- /srv/dev-disk-by-uuid-4d1de0d8-ab38-4c4c-9875-82695e5abbed/ssd/docker/data/jellyfin/library:/config
- /srv/mergerfs/data/media:/media/
- /srv/mergerfs/data/torrents:/torrents/
ports:
- 8096:8096
restart: unless-stopped