JavaScript/Node.js

우분투 18.04 LTS에서 Node.js version 10과 pm2 설치하기

검정비니 2022. 10. 1. 00:05
728x90
반응형

우분투 18.04 버전에서는 apt가 node.js version 10에 대해서 기본적으로 지원을 하지 않아서 sudo apt install nodejs로 node.js를 설치하면 8버전이 설치가 된다.

그런데, pm2의 설치를 위해서는 node.js가 version 10 이상이어야만 한다.

우분투 18에서 20으로 업그레이드 없이 이를 해결하는 가장 빠른 방법은 curl을 사용해서 Node 10 installer를 다운 받고 실행시키는 것이다.

 

# curl 설치
sudo apt install curl

# Node 10 installer 다운 및 설치
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -

# installer를 설치하게 되면 해당 프로세스가 자동으로 apt update를 실행시켜준다.

# node.js 설치
sudo apt install nodejs

# pm2 설치
npm install pm2 -g

# 만약 pm2 설치를 할 때 permission denied가 나오게 되면 sudo를 붙이면 된다.
sudo npm install pm2 -g

 

관련 링크:

https://joshtronic.com/2018/05/08/how-to-install-nodejs-10-on-ubuntu-1804-lts/

 

How to install Node.js 10 on Ubuntu 18.04 LTS by Josh Sherman

Two days before Canonical dropped the latest and greatest long term service release of Ubuntu, the Node.js Foundation dropped the latest and greatest (and eventually long term service release) of Node.js. Due to the timing of things, Ubuntu 18.04 LTS was s

joshtronic.com

 

반응형