Jellyfin Forum
Startup problem jellyfin-web - 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: Startup problem jellyfin-web (/t-startup-problem-jellyfin-web)

Pages: 1 2 3


Startup problem jellyfin-web - AEZAKMI - 2023-11-22

hello everyone, I understand the error is already known, but everything that I found did not help me solve it after starting the service, it takes just a couple of minutes, and the service stops working only if you run it directly from the console.
Method with the command ln -s /usr/share/jellyfin/web /usr/lib/jellyfin/bin/jellyfin-web does not work Upside-down-face
OS Debian
   
   


RE: Startup problem jellyfin-web - tmsrxzar - 2023-11-22

so we know 2 things that "do not" work

is jellyfin using any mounts from other systems?
is there contents in /usr/share/jellyfin/web?
are the permissions correct?


RE: Startup problem jellyfin-web - AEZAKMI - 2023-11-22

1.no
2. yes there are files there
3 please tell me what do you mean by the word permissions? I just installed the program from the terminal


RE: Startup problem jellyfin-web - Venson - 2023-11-22

If the web-app files are located at "/usr/lib/jellyfin/bin/jellyfin-web" then the correct commandline is:

./jellyfin --webdir="/usr/lib/jellyfin/bin/jellyfin-web"

or you set an enviorment variable

SET JELLYFIN_WEB_DIR="/usr/lib/jellyfin/bin/jellyfin-web"

as documented here:
Configuration | Jellyfin


RE: Startup problem jellyfin-web - TheDreadPirate - 2023-11-22

Do not run jellyfin manually. Running it manually requires that you specify a bunch of variables, which you didn't do, including where jellyfin-web is located. Just start the service. It will handle all of that. Kill the jellyfin process you started then.

Code:
sudo systemctl start jellyfin



RE: Startup problem jellyfin-web - AEZAKMI - 2023-11-22

I try it this way and the service shuts down a second after checking

Let's start everything in order tell me how to completely remove with all configs and put it right jellyfin, maybe I've already broken everything, please tell me.


RE: Startup problem jellyfin-web - TheDreadPirate - 2023-11-22

If this is a fresh install and you don't care about losing anything, follow these steps.

Code:
sudo apt purge jellyfin
curl https://repo.jellyfin.org/install-debuntu.sh | sudo bash

After that second command finishes, it should start the jellyfin service. Literally that easy.

To stop Jellyfin

Code:
sudo systemctl stop jellyfin

To start Jellyfin

Code:
sudo systemctl start jellyfin

Jellyfin will automatically start on reboots.


RE: Startup problem jellyfin-web - AEZAKMI - 2023-11-22

at the end of the launch, I gave an error https://imgur.com/QkIrAXW


RE: Startup problem jellyfin-web - TheDreadPirate - 2023-11-22

What is the output of

Code:
sudo journalctl -xeu jellyfin



RE: Startup problem jellyfin-web - AEZAKMI - 2023-11-22

output https://imgur.com/JPCihl9 Thanks