Skip to content

Instantly share code, notes, and snippets.

@jaxtheking
Last active September 5, 2021 20:06
Show Gist options
  • Save jaxtheking/9f4deaf4bb4d21660f061a52d6d717f0 to your computer and use it in GitHub Desktop.
Save jaxtheking/9f4deaf4bb4d21660f061a52d6d717f0 to your computer and use it in GitHub Desktop.
Installing Node.js on a cPanel/WHM Server
## Check if nodesources need removing
rpm -qa 'node|npm'
## Remove nodejs installed via yum
yum remove nodesource-release* nodejs
yum clean all
## Install node.js using compiled binaries
cd ~
wget https://nodejs.org/dist/v14.9.0/node-v14.9.0-linux-x64.tar.xz
sudo tar --strip-components 1 -xJvf node-v* -C /usr/local
node --version
# fix ownerships in /usr/local folders with chown -R root:root .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment