0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Djangoで管理画面のユーザー名・パスワードを忘れてしまった時

Posted at

Djangoを久しぶりに開いたらsuperuserのユーザー名もパスワードも忘れてしまっていたので、
コマンドたたいて確認する方法の忘備録です。

pythonコマンド立ち上げる。

>>>from django.contrib.auth.models import User
>>>users = User.objects.all()
>>>user = users[0]
>>>user
<User: 忘れていたユーザー名>
>>>user.set_password('お好きなパスワードを設定してください')
>>>user.save()

これで新たなパスワードが設定できるので、
管理画面からログインできるようになりました。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?