Jellyfin Forum
SOLVED: Active: inactive (dead) - 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: SOLVED: Active: inactive (dead) (/t-solved-active-inactive-dead--7365)



Active: inactive (dead) - camiloVerger - 2024-08-09

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!


RE: Active: inactive (dead) - tepsys - 2024-08-09

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/installation/linux/#debuntu-debian-ubuntu-and-derivatives-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



RE: Active: inactive (dead) - TheDreadPirate - 2024-08-09

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.


RE: Active: inactive (dead) - Efficient_Good_5784 - 2024-08-09

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/installation/linux#debuntu-debian-ubuntu-and-derivatives-using-apt


RE: Active: inactive (dead) - tepsys - 2024-08-09

(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



RE: Active: inactive (dead) - camiloVerger - 2024-08-10

(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/installation/linux#debuntu-debian-ubuntu-and-derivatives-using-apt

Muchas gracias, hice exactamente eso y Jellyfin ya esta activo.