• 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 SOLVED: Active: inactive (dead)

     
    • 0 Vote(s) - 0 Average

    SOLVED: Active: inactive (dead)

    Jellyfin inactivo
    camiloVerger
    Offline

    Junior Member

    Posts: 3
    Threads: 2
    Joined: 2024 Aug
    Reputation: 0
    Country:Uruguay
    #1
    2024-08-09, 02:55 AM (This post was last modified: 2024-08-09, 03:08 AM by camiloVerger. Edited 5 times in total.)
    No puedo activar Jellyfin, pero tuve problemas desde su instalación.
    Les cuento que lo quiero usar en un servidor casero con Debian 12 recién instalado.
    Y les muestro mi problema en la instalación para que hayan más detalles de mi problema:
    Primero intenté instalar Jellyfin con el comando normal:
    Code:
    sudo apt install jellyfin
    Y me encontré con el siguiente error:
    Code:
    Los siguientes paquetes tienen dependencias incumplidas:
    jellyfin-ffmpeg6: Depende: libvpx6 (>= 1.6.0) pero no es instalable
                        Depende: libwebp6 (>= 0.5.1) pero no es instalable
                        Depende: libx264-160 (>= 2:0.160.3011+gitcde9a93) pero no es instalable
                        Depende: libx265-192 (>= 3.2) pero no es instalable
    E: No se pudo corregir los problemas, usted ha retenido paquetes rotos.
    Evadiendo ese problema, instalé Jellyfin de la siguiente forma (esta solución para la instalación la encontré en internet):
    Code:
    sudo apt install jellyfin-server jellyfin-web
    De esa forma Jellyfin parece estar instalada, luego intento iniciarlo y ver el estado mediante los siguientes comandos:
    Code:
    sudo systemctl start jellyfin
    sudo systemctl enable jellyfin
    sudo systemctl status jellyfin
    Y el resultado final es el siguiente:
    Code:
    ○ jellyfin.service - Jellyfin Media Server
        Loaded: loaded (/lib/systemd/system/jellyfin.service; enabled; preset: enabled)
        Drop-In: /etc/systemd/system/jellyfin.service.d
                └─jellyfin.service.conf
        Active: inactive (dead) since Thu 2024-08-08 23:43:39 -03; 22min ago
      Duration: 1.907s
      Main PID: 1476 (code=exited, status=0/SUCCESS)
            CPU: 1.845s
    Jellyfin está inactivo (muerto) y no encuentro la forma de activarlo.
    Agradezco mucho cualquier ayuda ya que no soy experto, soy un simple aficionado. Saludos!
    Go to solution
    tepsys
    Offline

    Junior Member

    Posts: 18
    Threads: 1
    Joined: 2024 Aug
    Reputation: 0
    Country:United States
    #2
    2024-08-09, 06:39 AM
    How did you go about adding a repo for Jellyfin to Debian? Hopefully you used one of the options here: https://jellyfin.org/docs/general/instal...-using-apt

    Code:
    sudo apt install jellyfin
    failed because it is missing dependencies. For some reason, libvpx6 is uninstallable on your system.

    What does your /etc/apt/sources.list look like?

    Normally if something were misconfigured, systemctl status jellyfin would exit with something other than "SUCCESS"

    Code:
      Main PID: 1476 (code=exited, status=0/SUCCESS)

    I would try starting the service one more time, or even reboot the system if you haven't already

    Code:
    sudo systemctl start jellyfin
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #3
    2024-08-09, 02:43 PM
    What repos do you have in Debian? Do you only have main and updates? You should add universe and multiverse to ensure that you are able to install all the dependencies for jellyfin-ffmpeg. The fact that jellyfin-ffmpeg wasn't installed is probably the reason that Jellyfin is failing to start.
    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]
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,167
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #4
    2024-08-09, 03:16 PM (This post was last modified: 2024-08-09, 03:18 PM by Efficient_Good_5784. Edited 2 times in total.)
    Hablé con uno del equipo de Jellyfin.

    Me ha dicho que la razón es que estás usando un método obsoleto.

    Tienes que borrar el paquete de Jellyfin y también después tienes que borrar lo siguiente: "/etc/apt/sources.list.d/jellyfin.list"

    Ya después, tienes que usar el método de instalar como está escrito en el manual: https://jellyfin.org/docs/general/instal...-using-apt
    tepsys
    Offline

    Junior Member

    Posts: 18
    Threads: 1
    Joined: 2024 Aug
    Reputation: 0
    Country:United States
    #5
    2024-08-09, 05:34 PM
    (2024-08-09, 02:43 PM)TheDreadPirate Wrote: What repos do you have in Debian?  Do you only have main and updates?  You should add universe and multiverse to ensure that you are able to install all the dependencies for jellyfin-ffmpeg.  The fact that jellyfin-ffmpeg wasn't installed is probably the reason that Jellyfin is failing to start.

    Just an fyi, multiverse and universe are Ubuntu things, not Debian. The only repos he should need enabled for a Debian Jellyfin server are main and maybe non-free-firmware Smiling-face

    A basic working sources.list for Debian with Jellyfin:
    Code:
    deb http://deb.debian.org/debian bookworm main non-free-firmware
    deb-src http://deb.debian.org/debian bookworm main non-free-firmware

    deb http://deb.debian.org/debian-security/ bookworm-security main non-free-firmware
    deb-src http://deb.debian.org/debian-security/ bookworm-security main non-free-firmware

    deb http://deb.debian.org/debian bookworm-updates main non-free-firmware
    deb-src http://deb.debian.org/debian bookworm-updates main non-free-firmware
    1
    camiloVerger
    Offline

    Junior Member

    Posts: 3
    Threads: 2
    Joined: 2024 Aug
    Reputation: 0
    Country:Uruguay
    #6
    2024-08-10, 10:36 PM
    (2024-08-09, 03:16 PM)Efficient_Good_5784 Wrote: Hablé con uno del equipo de Jellyfin.

    Me ha dicho que la razón es que estás usando un método obsoleto.

    Tienes que borrar el paquete de Jellyfin y también después tienes que borrar lo siguiente: "/etc/apt/sources.list.d/jellyfin.list"

    Ya después, tienes que usar el método de instalar como está escrito en el manual: https://jellyfin.org/docs/general/instal...-using-apt

    Muchas gracias, hice exactamente eso y Jellyfin ya esta activo.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • 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