2024-08-31, 04:58 PM
(2024-08-31, 04:46 PM)TheDreadPirate Wrote: "sudo ps -aux | grep jellyfin" will return all of the jellyfin processes running.
One of the lines will look like this.
Code:jellyfin 967424 0.5 2.2 275551736 729752 ? Ssl 06:00 2:05 /usr/bin/jellyfin --webdir=/usr/share/jellyfin/web --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg
In my case I would use "967424" as the PID.
Code:sudo kill -9 967424
Here is the output.
Code:
ts82924001@ts82924001:~$ sudo ps -aux | grep jellyfin
[sudo] password for ts82924001:
jellyfin 9742 0.1 4.3 274610464 308916 ? Ssl Aug30 1:09 /usr/bin/jellyfin --webdir=/usr/share/jellyfin/web --ffmpeg=/usr/lib/jellyfin-ffmpeg/ffmpeg
ts82924+ 24697 0.0 0.0 17812 2304 pts/1 S+ 12:55 0:00 grep --color=auto jellyfin
ts82924001@ts82924001:~$ pidof jellyfin
9742
ts82924001@ts82924001:~$ sudo kill -9 9742
ts82924001@ts82924001:~$ sudo systemctl start jellyfin
ts82924001@ts82924001:~$