How to install node in Ezeelogin gateway server?
How to install node in the Ezeelogin gateway server using the rpm package?
1.Install nodejs in Centos - 6,7,8
root@gateway:# curl -sL https://rpm.nodesource.com/setup_14.x |bash -
root@gateway:# yum install -y nodejs
root@gateway:# node -v
v14.8.0
2. Install nodejs in Ubuntu - 16, 18, 20
root@gateway:# curl -sL https://deb.nodesource.com/setup_14.x |bash -
root@gateway:# apt-get install nodejs -y
root@gateway:# node -v
v14.8.0