인스턴스 생성까지 끝낸 후
putty 다운
puttygen 으로 pem 파일을 ppk로 변경
ubuntu@~~~ 로 접속
sudo apt-get update
최신 버전엔 nodejs 와 npm이 포함되어 있다.
sudo apt-get nodejs
sudo apt-get npm
nodejs 설치함
sudo apt-get install mongodb-server mongodb-clients
몽고디비 설치
vim 명령어 모음
http://hyeonstorage.tistory.com/274
nodejs 프로세서 관리 모듈
sudo npm install pm2 -g
앱이 계속 살아있게 도와주고 죽으면 다시 살려줌
sudo pm2 start server.js
서버를 계속 실행시켜줌
pm2 kill
pm2 stop ID
pm2 ps
mv 이름 바꿀이름
도커 관련
https://hiseon.me/2018/02/19/install-docker/
2018년 10월 30일 화요일
flutter 기본 개념 1
Scaffold - 화면 뼈대 역할 - 기본적으로 AppBar body floatingActionButton 같은걸 배치해줌 return Scaffold ( appBar : AppBar ( title : const Text ...
-
Introduction Dynamic Programming (DP) is a fundamental concept in computer science and algorithmic problem-solving. It's a technique tha...
-
Scaffold - 화면 뼈대 역할 - 기본적으로 AppBar body floatingActionButton 같은걸 배치해줌 return Scaffold ( appBar : AppBar ( title : const Text ...
-
도커 상태 확인 현재 실행중인 프로세스 docker ps 실행 했던 프로세스 docker ps -a 설치된 이미지 목록 docker images 도커 이미지 관리 이미지 받아오기 docker pull image이름 이...