如何在Django中重置管理密码[duplicate]

时间:2022-11-15 13:09:17

Possible Duplicate:
how to reset django admin password?

可能重复:如何重置django管理密码?

I have worked for Django project in local server. The current updates need to fix on web server . But couldnt match the admin credentials . So how can reset the admin password...

我曾在本地服务器上为Django项目工作。当前的更新需要在web服务器上进行修复。但是不能匹配admin凭证。那么如何重置管理密码……

2 个解决方案

#1


10  

Assuming you know the name of a superuser: django-admin.py changepassword

假设你知道一个超级用户的名字:django-admin。py changepassword

#2


7  

Run this in the project on the server to create a new super user

在服务器上的项目中运行它来创建一个新的超级用户

python manage.py createsuperuser

#1


10  

Assuming you know the name of a superuser: django-admin.py changepassword

假设你知道一个超级用户的名字:django-admin。py changepassword

#2


7  

Run this in the project on the server to create a new super user

在服务器上的项目中运行它来创建一个新的超级用户

python manage.py createsuperuser