1. 슈퍼 유저 생성하기 가장 먼저 슈퍼유저를 생성해 보겠습니다. 장고 터미널 내 아래와 같은 명령어를 입력합니다.python manage.py createsuperuserpython manage.py createuser - Username, Email, Password 를 입력하여 슈퍼유저(어드민)을 생성 2. 슈퍼 유저 비밀번호 초기화python manage.py changepassword - 관리자 계정의 비밀번호를 잃어버린 경우 'changepassword' 명령어를 입력하여 비밀번호를 초기화 할 수 있다. 3. 로컬 서버 실행 및 관리자 페이지 접속python manage.py runserver관리자 페이지 접속http://localhost:8000/admin/ 아주 잘 뜬다. ^^