Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server (/t-upgrade-jellyfin-server-from-10-9-3-to-10-10-3-doesnt-upgrade-jellyfin-server) Pages:
1
2
|
RE: Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server - TheDreadPirate - 2024-12-21 Oh. Wow. Lots of mixed packages there. 10.8.13 for web, 10.9.3 for server, 10.10.3 for the meta package. Let's backup your data, just in case. But I don't think this should delete your data. Code: sudo mkdir /jellyfin-backup Now we are going to remove jellyfin-ffmpeg, jellyfin-web, and the jellyfin meta package. Code: sudo apt remove jellyfin-ffmpeg7 jellyfin-web jellyfin This should leave you with only jellyfin-server 10.9.3 and all of your jellyfin data should still be in tact. Now we install jellyfin and it should install the latest jellyfin-ffmpeg, jellyfin-web, and pull jellyfin-server up to to 10.10.3. Code: sudo apt install jellyfin RE: Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server - Paralyses3833 - 2024-12-22 the weird thing is, no other clients (web or android) complain about not being on the latest version of the server. THe only client that doesnt let me play anything is the Android TV version of the Jellyfin app. RE: Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server - Paralyses3833 - 2024-12-22 any reason for not removing the jellyfin-server before reinstallation? after going through the suggested steps my jellyfin-web did get updated to the latest version, but the jellyfin-server still shows as 10.9.3. I assume the reason the update wasnt workign before isnt addressed yet. Code: # sudo apt list --installed | grep jellyfin (2024-12-21, 06:54 PM)TheDreadPirate Wrote: Oh. Wow. Lots of mixed packages there. 10.8.13 for web, 10.9.3 for server, 10.10.3 for the meta package. Let's backup your data, just in case. But I don't think this should delete your data. RE: Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server - TheDreadPirate - 2024-12-22 Removing Jellyfin-server would remove the jellyfin user from your system. Adding the potential that the jellyfin user would change UID when you reinstall jellyfin. I had hoped it would pull the server up to 10.10.3, but that doesn't appear to be the case. Code: sudo apt remove jellyfin-server If Jellyfin doesn't start, reset permissions on jellyfin's data and config directories. Code: sudo chown -R jellyfin: /var/lib/jellyfin /var/cache/jellyfin/ /var/log/jellyfin /etc/jellyfin /usr/share/jellyfin RE: Upgrade jellyfin server from 10.9.3 to 10.10.3 doesnt upgrade jellyfin-server - Paralyses3833 - 2024-12-22 thanks, that did the trick. and didnt need to reset the permissions |