您现在的位置是: 首页 > 运维 CentOS 安装Node.js
CentOS 安装Node.js
2020-05-20 【运维】 3359人已围观 5613次浏览
简介CentOS 安装Node.js
首先是去Node.js官网找到对应系统最新的bin包
可以先下载到本地,然后通过SFTP上传到服务器。
或者直接在服务器上进行下载
wget https://nodejs.org/dist/v8.11.3/node-v8.11.3-linux-x64.tar.xz
然后解压包
xz -d node-v8.11.3-linux-x64.tar.xz
tar -xvf node-v8.11.3-linux-x64.tar
确认你解压之后的路径,比如我的是/opt/node-v8.11.3-linux-x64,具体路径根据实际情况来确认
然后通过ln命令建立软连接
ln -s /opt/node-v8.11.3-linux-x64/bin/node /usr/bin/node
ln -s /opt/node-v8.11.3-linux-x64/bin/npm /usr/bin/npm
执行成功后,测试安装
node -v
npm -v
出现版本号,则部署成功。
如果需要安装其他的node.js全局插件,则插件安装完成后,参考通过ln命令建立软连接方式,创建全局关联
很赞哦! (0)
相关文章
- Linux 查看磁盘、磁盘分区、挂载磁盘、卸载磁盘操作
- Debian/Ubuntu无netstat命令解决方案
- 常见端口号
- mysql 索引过长1071-max key length is 767 byte
- ElasticSearch安装踩坑指南
- 迁移 Docker 目录
- CentOS 安装JDK
- Linux no space left on device 出现设备上没有空间问题
- Windows CMD 常用命令
- Redis 提示 MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk 解决方案
点击排行
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- Debian apt 使用国内镜像
- RocketMQ 出现 sendDefaultImpl call timeout 问题
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- SpringBoot @NotBlank 不生效问题
- 记一次 Mybatis-Plus 自动填充无效问题解决
- SpringBoot 2.x 文件上传出现 The field file exceeds its maximum permitted size of 1048576 bytes
- nuxt 项目完整部署方案
站长推荐
猜你喜欢
- Error in execution; nested exception is io.lettuce.core.RedisCommandExecutionException: ERR DISABLE You can't write or read against a disable instance
- 在更新python时出现dyld: Library not loaded: /usr/local/opt/libpsl/lib/libpsl.5.dylib,Reason: image not found错误解决方案
- start.spring.io访问太慢,构建SpringBoot项目失败
- 迁移 Docker 目录
- SpringBoot 集成 Elasticsearch 7.8.1 出现错误 Factory method 'elasticsearchRestHighLevelClient' threw exception; nested exception is java.lang.NoSuchFieldError: IGNORE_DEPRECATIONS
- 类 BASE64Decoder 程序包 sun.misc 找不到符号
- Python 钉钉加签 HmacSHA256 算法签名
- PHP 中list()出现Undefined offset: 0错误
- Mac禁用Adobe Creative Cloud自启状态栏
- PHP 在执行 composer install 时出现提示 PHP Fatal error: Allowed memory size of XXXXXX bytes exhausted <...>