Written by
flask-style
on
on
[AWS] 사용법 공부
[AWS] 사용법 공부
git hub 설치 -> git bash 실행
ssh -i 키페어위치 ubuntu@퍼블릭 IPv4 주소
mkdir 폴더명 // 폴더생성
ls // 내 위치에서 디렉토리 확인
cd 폴더명 // 폴더로 진입
cd .. // 폴더 나가기
sudo chmod 755 initial_ec2 // 권한부여~?
pip install flask
pip install pymongo
nohup python app.py & // 원격 접속 종료시에도 서버가 계속 돌아가게 하기
ps -ef | grep 'app.py' // pid값 확인
kill -9 [pid값]
kill -9 [pid값]
from http://firstquarter.tistory.com/26 by ccl(A) rewrite - 2021-05-05 01:00:35