ssh -i {pem key 위치}/{pem key 파일이름} ubuntu@{EC2 IP}
wget https://docs.conda.io/en/latest/miniconda.html
chmod +x {설치 완료 후 나오는 Minconda.sh}
./{설치 완료 후 나오는 Minconda.sh}
source .bashrc
sudo apt-get update
sudo apt-get upgrade
sudo apt-get gcc
위 두 가지를 진행하여야 mysqlclient를 설치하여도 에러가 나지 않는다.
sudo apt-get libmysqlclient-dev
conda create -n {가상환경이름} python={버전}
conda activate {가상환경이름}
git clone {git clone 할 주소}
pip install -r requirements.txt
ALLOWD_HOST = ['*', 'IP', 'IP:8000']
python manage.py runserver 0:8000
url: http://IP:PORT/endpoint
pip install gunicorn
nohup gunicorn --bind=0.0.0.0:8000 {django 실행 app}.wsgi &
ps -ef | grep {python 아니면 실행 app 이름}
kill {PID}