0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Djangoのログインパスワードを再設定する

Posted at

Django管理画面のパスワード再設定方法の忘備録です。

久しぶりにログインしようとしたときについ忘れがちですよね。

方法

ユーザ名が分かっている場合

$ python manage.py changepassword <ユーザ名>

ユーザ名も不明な場合

$ sqlite3 db.sqlite3
$ sqlite> select username from auth_user;
$ <ユーザ名一覧が表示される>
$ sqlite> .q

ユーザ名を取得した後は下記コマンドで再設定できます。

$ python manage.py changepassword <ユーザ名>

私はadminのパスワードで実施しましたが、admin以外のユーザも同じ方法で再設定できそうな気がします。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?