Jellyfin Forum
Server/Web/Build Version Mismatch - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: Server/Web/Build Version Mismatch (/t-server-web-build-version-mismatch)

Pages: 1 2


RE: Server/Web/Build Version Mismatch - PlunderBunny - 2024-12-29

Once again, I'm seeing this both when accessing using a browser, and also when accessing using Jellyfin Media Player. I've tried both clearing the cache on the browser and clearing out the appdata/local files for Jellyfin Media Player, I've done so after reinstalling jellyfin-web on the server as well... I'm still just seeing a single "Version: 10.10.3" listed in the dashboard.


RE: Server/Web/Build Version Mismatch - TheDreadPirate - 2024-12-29

Let's make a backup of Jellyfin and reinstall Jellyfin. Follow these commands to back, reinstall, and restore your jellyfin.

Code:
sudo mkdir /jellyBackup
cd /jellyBackup
sudo rsync -a -p --progress /var/lib/jellyfin libJellyfin/
sudo rsync -a -p --progress /etc/jellyfin etcJellyfin/
sudo rsync -a -p --progress /var/cache/jellyfin cacheJellyfin/
sudo apt purge jellyfin*
curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash
sudo systemctl stop jellyfin
sudo rsync -a -p --progress libJellyfin/jellyfin /var/lib/ --delete
sudo rsync -a -p --progress etcJellyfin/jellyfin /etc/ --delete
sudo rsync -a -p --progress cacheJellyfin/jellyfin /var/cache/ --delete
sudo chown -R jellyfin: /etc/jellyfin /var/lib/jellyfin /var/cache/jellyfin
sudo systemctl start jellyfin



RE: Server/Web/Build Version Mismatch - PlunderBunny - 2024-12-29

Sorta the nuclear option, hahaha, but purging it all and restoring from backups seems to have done the trick, thank you! Although I've lost most of my users, for some reason that I can't quite figure out? But whatever, annoying as that is, having it working properly is a small trade.


RE: Server/Web/Build Version Mismatch - TheDreadPirate - 2024-12-29

The backup and restore should have kept your users and libraries and watch status. I've done exactly those commands a couple times as have other users.