**개발 환경

node 14.17.6 npm 6.14.15**

Putty 실행 후

Host Name : [VM Public IP]

Port : 22

입력 후 OPEN

CMD 창에서 ID, PASSWORD 입력

Repository 클론 (처음 접속하는 경우)

git clone [<https://github.com/osamhack2021/WEB_BarberForce_Duty-Free.git>](<https://github.com/osamhack2021/WEB_BarberForce_Duty-Free.git>)

master branch 변경사항 pull

git pull origin master

**backend**디렉토리로 이동 후, 의존성 설치 및 개발 서버 실행

cd WEB_BarberForce_Duty-Free
cd backend
npm install   //새롭게 clone 한 상태에서만
mongod --dbpath ~/usr/local/mongodb/mongodb-linux-x86_64-2.4.8/data/
node server.js

실행중인 노드 강제종료

netstat -nlp | grep :3306
//tcp6       0      0 :::3306           :::*               LISTEN      4356/node
kill 4356