훈훈훈

Amazon AWS :: EC2 인스턴스에 Django 설치 본문

인프라/Amazon AWS

Amazon AWS :: EC2 인스턴스에 Django 설치

훈훈훈 2020. 3. 7. 16:51

1. Key.pem file 권한 설정

파일 소유자 읽기 권한으로 설정

chmod -R 400 [KEY_NAME.pem]

2. EC2 인스턴스 접속

ssh -i [KEY_NAME] ubuntu@[EC2.IP]

3. Mini conda install

conda env 상에서 Django server를 실행 시키기 위해 Mini conda install 필요

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh

chmod -R 755 Miniconda3-latest-Linux-x86_64.sh

./Miniconda3-latest-Linux-x86_64.sh

4. conda 가상 환경 생성

#파이썬3 버전의 환경만들기 
conda create -n "가상환경이름" python=[version]

5. migrations 및 runserver

python manage.py makemigrations
python manage.py migrate

python manage.py runserver 0:8000

 

Comments