epel 저장소 확인
# yum repolist
epel 저장소가 존재하지 않으면 먼저 epel-release 설치
# yum install epel-release -y
node.js 및 npm 설치 여부 확인
# node --version
bash: node: command not found
# npm --version
bash: npm: command not found
설치되어 있지 않을 시 설치 명령 실행
# yum install npm nodejs -y
# node --version
v6.16.0
# npm --version
3.10.10
LIST
'WEBD > 서버' 카테고리의 다른 글
centos7 메모리 정리하기(캐쉬 확인, 정리)[ Server ][ Linux ] (0) | 2020.10.06 |
---|---|
AB(Apache HTTP server banchmarking tool) 테스트[ Server ][ Linux ] (0) | 2020.10.06 |
[ Server ][ Linux ] centOS7 EPEL-RELEASE 설치 (0) | 2020.10.06 |
CentOS7 rewrite_mod 설정방법[ Server ][ Linux ] (0) | 2020.10.05 |
CentOS7 php_screw-1.5 설치 (php 소스 암호화)[ Server ][ Linux ] (0) | 2020.10.05 |