mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-25 06:03:37 +03:00
Unable to start server with systemctl #40
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @TN-1 on GitHub (Dec 12, 2018).
Temporary workaround is to start server manually with
sudo dotnet /usr/lib/jellyfin/bin/EmbyServer.dllUbuntu 18.04 using the apt package, dotnet version 2.1.5
@joshuaboniface commented on GitHub (Dec 12, 2018):
The Jellyfin process runs as the
jellyfinuser. If this is an upgrade, you'll need to move your/var/lib/embyto/var/lib/jellyfin, symlink the old path to the new path, and then ensure the whole directory is recursively owned byjellyfin.@TN-1 commented on GitHub (Dec 12, 2018):
Thankyou, that solved the problem.
For future people with this problem, commands are:
Is this something that could be automated during the installation process?
@joshuaboniface commented on GitHub (Dec 12, 2018):
The Debian package
postinstscript should be doing steps 2 and 3, but it won't move the contents of/var/lib/embydue to the potential for problems there (e.g. keeping that data as a backup), though it does try to force through the symlink. If you're upgrading it's best to move that directory/var/lib/embysomewhere safe first, then installjellyfin, then move and chown the contents.@JustAMan commented on GitHub (Dec 12, 2018):
This needs to be documented somewhere.
@joshuaboniface commented on GitHub (Dec 12, 2018):
Will add an upgrading section to the README shortly!