Centos7安装nodejs8的正确姿势

root权限下运行该命令:

curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -

会提示你以下内容:

irming "el7-x86_64" is supported...

+ curl -sLf -o /dev/null 'https://rpm.nodesource.com/pub_8.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm'

## Downloading release setup RPM...

+ mktemp
+ curl -sL -o '/tmp/tmp.pqYuu3meaY' 'https://rpm.nodesource.com/pub_8.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm'

## Installing release setup RPM...

+ rpm -i --nosignature --force '/tmp/tmp.pqYuu3meaY'

## Cleaning up...

+ rm -f '/tmp/tmp.pqYuu3meaY'

## Checking for existing installations...

+ rpm -qa 'node|npm' | grep -v nodesource

## Run `sudo yum install -y nodejs` to install Node.js 8.x LTS Carbon and npm.
## You may also need development tools to build native addons:
     sudo yum install gcc-c++ make
## To install the Yarn package manager, run:
     curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
     sudo yum install yarn

 

按照提示内容进行步骤安装就可以了。

找过很多资料都不靠谱,编译安装和gcc升级的时候会有一堆问题。

### 在 CentOS 7安装 Node.js 20 的具体步骤 在 CentOS 7 系统上安装 Node.js 20,可以通过以下方法实现。由于 CentOS 7 已停止维护,建议确保系统环境的安全性和兼容性。 #### 方法一:通过 NodeSource 安装 Node.js 20 执行以下命令以安装 Node.js 20: ```bash curl -fsSL https://rpm.nodesource.com/setup_20.x | bash - yum install -y nodejs ``` 验证安装是否成功: ```bash node -v npm -v ``` 此方法直接从 NodeSource 提供的 RPM 包中安装 Node.js,适用于大多数场景[^1]。 #### 方法二:通过 NVM 安装 Node.js 20 如果需要灵活管理多个 Node.js 版本,可以使用 Node Version Manager (NVM)。 安装 NVM: ```bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash source ~/.bashrc ``` 使用 NVM 安装 Node.js 20: ```bash nvm install 20 nvm use 20 ``` 验证安装结果: ```bash node -v npm -v ``` 此方法适合需要切换不同 Node.js 版本的开发环境[^2]。 #### 方法三:升级 GCC、make 和 glibc 后安装 Node.js 20 CentOS 7 默认的编译工具链可能较旧,因此需要升级 GCC、make 和 glibc 以支持最新版本的 Node.js。 升级 GCC 和 make: ```bash yum groupinstall "Development Tools" -y yum install centos-release-scl -y yum install devtoolset-11-gcc devtoolset-11-gcc-c++ -y scl enable devtoolset-11 bash ``` 升级 glibc: ```bash cd /usr/local/src wget http://ftp.gnu.org/gnu/glibc/glibc-2.34.tar.gz tar zxvf glibc-2.34.tar.gz cd glibc-2.34 mkdir build cd build ../configure --prefix=/usr/local/glibc-2.34 make -j$(nproc) make install ``` 设置 glibc 环境变量: ```bash echo 'export LD_LIBRARY_PATH=/usr/local/glibc-2.34/lib:$LD_LIBRARY_PATH' >> ~/.bashrc source ~/.bashrc ``` 安装 Node.js 20: ```bash curl -fsSL https://rpm.nodesource.com/setup_20.x | bash - yum install -y nodejs ``` 验证安装结果: ```bash node -v npm -v ``` 此方法适用于需要更高兼容性的生产环境[^2]。 #### 注意事项 - 如果系统需要长期运行,请考虑将服务迁移到受支持的操作系统版本。 - 确保防火墙规则允许必要的端口通信。 - 使用非 root 用户运行 Node.js 应用程序以提高安全性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

yangchuan_csdn91

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值