this post was submitted on 12 May 2024
109 points (99.1% liked)

Jellyfin: The Free Software Media System

5714 readers
5 users here now

Current stable release: 10.10.0

Community Standards

Website

Forum

GitHub

Documentation

Feature Requests

Matrix (General Information & Help)

Matrix (Announcements)

Matrix (General Development)

Matrix (Off-Topic) - Come get to know the team and blow off steam!

Matrix Space - List of all the available rooms on Matrix.

Discord - Bridged to our Matrix rooms

founded 4 years ago
MODERATORS
109
submitted 6 months ago* (last edited 6 months ago) by Mountaineer to c/[email protected]
 

I'm a bit surprised there hasn't been an official post about this yet.

Big thanks to @joshuaboniface and the rest of the Jellyfin team

I'm also personally waiting for 10.9.1, there appears to be a small migration issue, and a memory leak.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 6 months ago

Just upgraded to 10.9.0, server didn't close properly so there were sqlite .db-wal files left besides the jellyfin.db and library.db files which caused an error about the database tables being locked.:

Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 6: 'database table is locked'.

Solved it by running

systemctl stop jellyfin
cd /var/lib/jellyfin/data
sqlite3 jellyfin.db
> .recover
> .quit
sqlite3 library.db
> .recover
> .quit

Now the .db-wal files were gone and I could

systemctl start jellyfin

I did lose a bunch of music metadata, but the advantage of contributing to musicbrainz is that it's easily recovered :)