• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0

     
    • 0 Vote(s) - 0 Average

    Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0

    Jellyfin is inaccessible after upgrade from Jellyfin.Server 10.8.13.0 to 10.9.11.0
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #16
    2024-10-10, 11:58 AM
    Let's experiment. Let's backup your current Jellyfin server files, purge all of Jellyfin, reinstall Jellyfin, test the fresh 10.9.11 server, then restore the old server and test it with fresh binaries.

    On the Jellyfin LXC.

    Code:
    sudo systemctl stop jellyfin
    cd /some/backup/directory  # Just find a directory to store your jellyfin backup in
    mkdir -p etc var/lib var/cache
    sudo rsync -a -p --progress /etc/jellyfin etc/
    sudo rsync -a -p --progress /var/lib/jellyfin var/lib/
    sudo rsync -a -p --progress /var/cache/jellyfin var/cache/
    sudo apt purge jellyfin*
    sudo rm -rf /etc/jellyfin /var/lib/jellyfin /var/cache/jellyfin /usr/lib/jellyfin /usr/lib/jellyfin-ffmpeg /usr/share/jellyfin
    curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash

    Now you should have a fresh install to test with. Clear browser cache on web clients before connecting or use private/incognito windows.

    Once you've verified you can reach it with other clients, let's restore your original server instance. The "--delete" at the end of the rsync commands below ensures that any new files that the test instance generated, that don't also exist in the original, are deleted so you don't have stray files.

    Code:
    sudo systemctl stop jellyfin
    cd /etc/
    sudo rsync -a -p --progress /some/backup/directory/etc/jellyfin .
    cd /var/cache
    sudo rsync -a -p --progress /some/backup/directory/var/cache/jellyfin . --delete
    cd /var/lib
    sudo rsync -a -p --progress /some/backup/directory/var/lib/jellyfin . --delete
    sudo systemctl start jellyfin
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 10:03 AM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 01:20 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 01:28 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 02:01 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 04:22 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 05:00 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 05:41 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 05:55 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 06:19 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 06:37 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 07:05 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 07:17 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-09, 07:31 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-09, 07:53 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-10, 07:20 AM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-10, 11:58 AM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-11, 08:06 AM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-14, 05:37 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-14, 05:41 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-14, 05:59 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-14, 06:16 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-14, 06:46 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-14, 07:15 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-14, 07:25 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by TheDreadPirate - 2024-10-14, 07:56 PM
    RE: Inaccessible after upgrade from 10.8.13.0 to 10.9.11.0 - by Riesling - 2024-10-15, 08:14 AM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode