mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 18:09:12 +03:00
[Issue]: Redirected to quick start even though quick start has already been completed. #4091
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 @Danacus on GitHub (Aug 7, 2022).
Please describe your bug
I recently migrated from a native Linux install of Jellyfin to podman. Everything is working well for clients that are already logged in, but when I try to connect with a new client (e.g. by clearing browser storage or logging out), I am redirected to quick start page. If I would try to complete the quick start, it naturally fails, because I've already completed it (the config file confirms this).
Jellyfin logs nothing of this action (even at debug level), which is a bit odd, perhaps jellyfin-web is working, but I can't connect to jellyfin unless I was already logged in? I don't really know what's going on here.
Edit: When opening
http://localhost:8096/system/info/public, it returns the following:It looks like jellyfin claims the startup wizard has not been completed, however the config file states otherwise:
I suspect I somehow managed to get jellyfin in an inconsistent state where the startup wizard is both completed and not completed. Any ideas on how to fix this?
Jellyfin Version
10.8.0
if other:
No response
Environment
Jellyfin logs
No response
FFmpeg logs
No response
Please attach any browser or client logs here
Please attach any screenshots here
No response
Code of Conduct
@Danacus commented on GitHub (Aug 7, 2022):
Figured it out. Config files were in a separate directory than the other data.
I was using the following container settings
but config files are still stored in
/config, not/var/lib/jellyfinas I thought.My bad.
Fixed by adding
-e JELLYFIN_DATA_DIR=/var/lib/jellyfin/config(or by mounting the "good" configuration files to/config).