1. nvm 설치
nvm을 통해 node, npm 버전을 상황에 따라 활용할 수 있도록 한다.
yum install wget
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash
source ~/.bashrc
vim ~/.bashrc
wget 모듈 설치 -> nvm 다운로드/설치 -> .bashrc 로딩/확인
2. Node.js 설치
21.07.19 기준 LTS 14.17.3 이길래 이걸로 설치해봤다.
nvm install 14.17.3
# 최신 LTS 버전으로 설치
nvm install --lts
# 최신 버전으로 설치
nvm install node
# 버전확인
node -v
npm -v
3. Node.js 실행
백엔드 구축하고 있는 레포가 있기 때문에 Git에서 Clone해와서 실행시켜보았다.
없더라도 새로 Node.js 프로젝트를 만들어서 실행하면 된다.
mkdir GIT
cd GIT
git clone http://github.com/anyl92/nodejs
cd nodejs
# 의존모듈 설치
npm install
# 실행
npm start
실행이 잘 된다.
...
로컬에서 확인만 해 봤고 이제 외부에 배포되는 서버로 만들어야지
'main > Server' 카테고리의 다른 글
[CentOS 7] Proxy 가상호스트 설정하기 (0) | 2021.07.23 |
---|---|
[CentOS 7] Node.js 공인IP에 배포하기 (+pm2) (0) | 2021.07.21 |
[CentOS 7] 리눅스 새 계정 생성, sudo 권한 주기, root 로그인 차단 방법 (0) | 2021.07.21 |
[CentOS 7] Linux firewall 명령어, 방화벽 포트 개방 (0) | 2021.07.19 |
[NCP | CentOS 7] Public IP & ACG 설정 후 Apache 웹서버 띄우기 (0) | 2021.07.19 |