[Python] Django / Admin, SuperUser, User 비밀번호 변경

2019. 1. 10. 16:48
반응형

[Python] Django / Admin, SuperUser, User 비밀번호 변경



1. 콘솔에서 바로 변경 (+ USER ID를 경우)


1
2
3
4
5
python manage.py changepassword USER ID
 
#변경할 비밀번호 입력
xxxxxxxxx
 
cs



2. 쉘에서 변경 (+ USER ID를 모를 경우)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
python manage.py shell
 
from django.contrib.auth.models import User
 
User.objects.filter(is_superuser=True)
 
-> superuser ID 확인. ID 를 알고있으면 생략
 
super_id = User.objects.get(username='admin id')
 
super_id.set_password('바꿀 비밀번호')
 
super_id.save()
 
exit()
cs


반응형

BELATED ARTICLES

more