• 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 Jellyfin won’t start

     
    • 0 Vote(s) - 0 Average

    Jellyfin won’t start

    Jellyfin won’t start
    cactus68100
    Offline

    Junior Member

    Posts: 6
    Threads: 2
    Joined: 2025 Feb
    Reputation: 0
    Country:France
    #1
    2025-02-01, 06:57 PM
    Hello everyone, 


    after a synaptic install, jellyfin refuses to boot on a Linux Mint 22 Mate install. 

    the sudo systemctl status jellyfin command gives: main process exited. code=exited. status=203/EXEC.

    Anyone have a suggestion?

    Cactus
    theguymadmax
    Offline

    Community Moderator

    Posts: 1,066
    Threads: 0
    Joined: 2024 Jun
    Reputation: 58
    #2
    2025-02-02, 04:31 AM
    Post the output of this command:
    Code:
    sudo journalctl -u jellyfin -n 500 --no-pager
    cactus68100
    Offline

    Junior Member

    Posts: 6
    Threads: 2
    Joined: 2025 Feb
    Reputation: 0
    Country:France
    #3
    2025-02-02, 04:47 PM
    Hi theguymadmax, 

    Here is the result of the command.    
    theguymadmax
    Offline

    Community Moderator

    Posts: 1,066
    Threads: 0
    Joined: 2024 Jun
    Reputation: 58
    #4
    2025-02-02, 06:02 PM
    What's the result of this command:
    Code:
    sudo apt list --installed | grep -i jellyfin
    cactus68100
    Offline

    Junior Member

    Posts: 6
    Threads: 2
    Joined: 2025 Feb
    Reputation: 0
    Country:France
    #5
    2025-02-02, 06:44 PM
    The apt liste command result :    
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #6
    2025-02-03, 12:27 AM
    We'd need to see the full output of that journalctl command. But try the following. If this doesn't work, share the FULL journalctl output via privatebin.net.

    Code:
    sudo chown -R jellyfin /etc/jellyfin /var/lib/jellyfin /var/cache/jellyfin
    sudo systemctl start jellyfin

    If it still doesn't start do this.

    Code:
    sudo mkdir -p /backup/etc /backup/var/cache /backup/var/lib
    sudo rsync -a -p --progress /etc/jellyfin /backup/etc/
    sudo rsync -a -p --progress /var/cache/jellyfin /backup/var/cache/
    sudo rsync -a -p --progress /var/lib/jellyfin /backup/var/lib/
    sudo apt purge jellyfin*
    sudo apt install jellyfin
    sudo systemctl stop jellyfin
    sudo chown -R jellyfin /etc/jellyfin /var/lib/jellyfin /var/cache/jellyfin
    sudo systemctl start jellyfin

    If that doesn't work, share the full output of the journalctl command.
    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]
    cactus68100
    Offline

    Junior Member

    Posts: 6
    Threads: 2
    Joined: 2025 Feb
    Reputation: 0
    Country:France
    #7
    2025-02-03, 05:53 PM
    hi dreadpirate,

    nothing works. here is the link for the journalctl command :

    https://privatebin.net/?8a9398eeb906b66c...EYuqfVwPxM


    cactus
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #8
    2025-02-03, 10:42 PM
    Code:
    PWD=/etc/systemd/system ; USER=root ; COMMAND=/usr/bin/nano jellyfin.service

    It looks like you edited the jellyfin service file prior to it no longer starting. What changes did you make? Also, from past experiences with other users, this file is not purged by apt. You would need to delete this file and reinstall to get a fresh copy.
    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]
    cactus68100
    Offline

    Junior Member

    Posts: 6
    Threads: 2
    Joined: 2025 Feb
    Reputation: 0
    Country:France
    #9
    2025-02-04, 06:36 PM (This post was last modified: 2025-02-04, 06:49 PM by TheDreadPirate. Edited 1 time in total.)
    Hi,


    Thank you for your help.

    I deleted the file and jellyfin started fine (!). thanks for that. 

    But I still have a problem: jelly can't see my USB hard drive, so I can't create a library. User and group is jellyfin:jellyfin and the rights are rwx for all.

    Do you have an idea?


    cactus
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #10
    2025-02-04, 06:52 PM
    If this USB drive was auto mounted, you would need to remove the ACL on /media/yourUsername

    Code:
    sudo setfacl -b -R /media/yourUsername
    sudo find /media/yourUsername -type d -exec chmod 755 {} \;
    sudo find /media/yourUsername -type f -exec chmod 644 {} \;

    Replace with your actual user name, obviously. Once you've done the commands above, Jellyfin should be able to access your media.
    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)


    • 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