• CCMan1701A@startrek.website
    link
    fedilink
    English
    arrow-up
    9
    ·
    1 month 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

  • 1hitsong@lemmy.mlM
    link
    fedilink
    English
    arrow-up
    7
    ·
    1 month ago

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

    • MountaineerOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 month ago

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

  • theredhood@lemm.ee
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 month ago

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

  • curled@lemm.ee
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 month 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 :)