• 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 can't reset password

     
    • 0 Vote(s) - 0 Average

    can't reset password

    can't reset password
    jasondxe
    Offline

    Junior Member

    Posts: 1
    Threads: 0
    Joined: 2025 Jun
    Reputation: 0
    Country:United Kingdom
    #13
    2025-06-21, 10:35 PM (This post was last modified: 2025-06-21, 10:37 PM by jasondxe. Edited 1 time in total.)
    🛠️ How to Reset a Forgotten Jellyfin Admin Password on Debian

    Hi 😊
    If you've forgotten the admin password for your Jellyfin server running on Debian (or similar Linux distros), don't worry — there's a clean, safe way to reset it using SQLite3. This method doesn't require reconfiguring your whole library or reinstalling Jellyfin.

    🔐 What This Does
    This guide walks you through removing the password hash from your admin user, which lets you log in without a password and set a new one through the web interface.

    ✅ Prerequisites
    Your Jellyfin server is installed natively on Debian, not in Docker.

    You have sudo/SSH access to the machine.

    🧰 Steps to Reset the Password
    1. Stop the Jellyfin service
    sudo systemctl stop jellyfin
    2. Back up the Jellyfin database
    Always back up before making changes:

    cp /var/lib/jellyfin/data/jellyfin.db ~/jellyfin.db.bak
    3. Install SQLite3 (if not already installed)
    sudo apt update sudo apt install sqlite3
    4. Open the Jellyfin database
    sudo sqlite3 /var/lib/jellyfin/data/jellyfin.db
    5. List all usernames
    In the SQLite prompt:

    SELECT Username FROM Users;
    This will show a list of all user accounts.

    6. Reset the password for a specific user
    Still in the SQLite prompt, run:

    UPDATE Users SET Password=NULL WHERE Username='YourUsername';
    Replace 'YourUsername' with the actual username you want to reset (e.g., 'Jay', 'admin', etc.)

    Exit SQLite:

    .quit
    7. Restart Jellyfin
    sudo systemctl start jellyfin
    8. Log in with No Password
    Open your browser and go to:

    http://<your-server-ip>:8096
    Log in using the username whose password you reset — leave the password field blank. You’ll be able to access the dashboard.

    Then go to:

    Dashboard → Users → [Your Account] → Change Password

    Set a new password, and you’re done!

    🧯 Final Tips
    This does not erase your libraries or settings — only resets the login password.

    You can use this method for any Jellyfin user, not just admins.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    can't reset password - by khan - 2023-10-02, 12:23 AM
    RE: can't reset password - by TheDreadPirate - 2023-10-02, 12:50 AM
    RE: can't reset password - by sodakjohn - 2024-06-05, 04:11 AM
    RE: can't reset password - by pcm - 2024-06-05, 04:39 AM
    RE: can't reset password - by TheDreadPirate - 2024-06-05, 01:38 PM
    RE: can't reset password - by Тервел Методиев - 2024-11-24, 03:40 PM
    RE: can't reset password - by TheDreadPirate - 2024-11-24, 04:51 PM
    RE: can't reset password - by sodakjohn - 2024-11-28, 03:47 AM
    RE: can't reset password - by dave009 - 2025-02-09, 08:59 PM
    RE: can't reset password - by simoneale73 - 2025-03-23, 10:19 AM
    RE: can't reset password - by TheDreadPirate - 2025-02-10, 01:55 PM
    RE: can't reset password - by TheDreadPirate - 2025-03-23, 05:58 PM
    RE: can't reset password - by EFX - 2025-07-12, 07:59 PM
    RE: can't reset password - by jasondxe - 2025-06-21, 10:35 PM

    • 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