graphite-dev team mailing list archive
-
graphite-dev team
-
Mailing list archive
-
Message #00430
Re: [Question #113072]: Forgot Login / Password
Question #113072 on Graphite changed:
https://answers.launchpad.net/graphite/+question/113072
Status: Open => Answered
chrismd proposed the following answer:
The graphite webapp uses the django framework, and django mostly handles
the user authentication bits. There is some good info on this here:
http://docs.djangoproject.com/en/dev/topics/auth/#changing-passwords
Basically, do something like this using wherever you've installed
graphite as $GRAPHITE_ROOT:
export PYTHONPATH=$GRAPHITE_ROOT/webapp/
export DJANGO_SETTINGS_MODULE=graphite.settings
python
# run example code from the link I sent you to change the password of the admin user
# then login to the admin interface (http://your-graphite-server/admin/) and change whoever else's password
--
You received this question notification because you are a member of
graphite-dev, which is an answer contact for Graphite.