스크립트 작성을 위한 명령어모음

연어는결국강으로·2022년 12월 28일
0

AWS 배포

목록 보기
16/16

netstat 설치
sudo apt install net-tools

jdk 설치
sudo apt-get update
sudo apt-get install openjdk-11-jdk -y

git 설치
sudo apt-get install git

curl 설치
sudo apt-get install -y curl

node 설치
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
source ~/.bashrc
nvm list-remote
nvm install v16.13.0
npm install -g npm@latest
npm install -g yarn

nohup
nohup java -jar name 1>backend-std.out 2>backend-err.out &

react 실행
npm run build
npm install -g serve
npx serve -s build

0개의 댓글