常规安装

  1. # 下载node压缩包
  2. wget https://npm.taobao.org/mirrors/node/v10.6.0/node-v10.6.0-linux-x64.tar.xz
  3. # 解压
  4. tar -xvf node-v10.6.0-linux-x64.tar.xz
  5. # 更改node安装目录
  6. mv node-v10.6.0-linux-x64 /root/node
  7. # 配置全局环境变量
  8. # 查找forever的安装路径
  9. find / -name node
  10. # 我这里查到是在:/node/bin/,添加forever到PATH
  11. vi /etc/profile
  12. # 在结尾的地方添加记录
  13. export PATH=$PATH:/node/bin
  14. # 重建缓存
  15. source /etc/profile

yum安装

  1. # 设置yum源
  2. curl --silent --location https://rpm.nodesource.com/setup_10.x | bash
  3. # 安装
  4. yum install -y nodejs
  5. # 制作软链接
  6. ln -s /usr/bin/node /usr/sbin/node