Skip to content

Instantly share code, notes, and snippets.

@morrismukiri
Created January 17, 2019 17:11
Show Gist options
  • Save morrismukiri/0a7017c6a40b986ef383eb7b18e60f05 to your computer and use it in GitHub Desktop.
Save morrismukiri/0a7017c6a40b986ef383eb7b18e60f05 to your computer and use it in GitHub Desktop.
Apache Superset reset admin password
# activate the virtualenv
source /home/superset/.virtualenvs/superset/bin/activate
fabmanager reset-password --app superset --username admin --password enteryournewpassword
@Prateek14b
Copy link

fabmanager is going to deprecated, you flask fab cmd

export FLASK_APP=superset flask fab reset-password --username adminuser --password yourpassword

or

superset fab reset-password --username adminuser --password yourpassword

This works! (2025-07-29)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment