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.

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 9 points 6 months ago

I'm actually pretty good at finding memory issues in .net programs, maybe I'll debug this a little on my setup if I get a moment. Dotnet trace was essential for this as it was a Linux arm device

[–] [email protected] 7 points 6 months ago

Cool I updated anyway because I live dangerously

[–] [email protected] 7 points 6 months ago (1 children)

There's a pinned announcement post that I made yesterday. It should be at the top.

[–] Mountaineer 3 points 6 months ago

Yeah, I can see it now.
I can only assume that the post hadn't propagated to my server 3 hours ago.

[–] [email protected] 4 points 6 months ago

Thanks for the heads up about the issues. I'll probably wait for 10.9.1 too.

[–] [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 :)