How to manually upgrade the node version under CentOs

How to manually upgrade the node version under CentOs

1. Find the corresponding nodejs package, refer to https://nodejs.org/download/release/

2. Switch to the location where node is installed, which is /usr/local/lib/nodejs

No existence can be established

mkdir /usr/local/lib/nodejs

3. Download

wget node-v8.12.0-linux-x64.tar.xz

4. Unzip

 tar -xJvf node-8.12.0-linux-x64.tar.xz -C /usr/local/lib/nodejs 
 mv /usr/local/lib/nodejs/node-8.12.0-linux /usr/local/lib/nodejs/node-8.12.0

5. Configure environment variables

vim ~/.profile

Enter the following

 export NODEJS_HOME=/usr/local/lib/nodejs/node-8.12.0/bin
 export PATH=$NODEJS_HOME:$PATH

6. Refresh environment variables immediately

~/.profile

7. Detection version

node -v

8. Establish system links to simplify calls

 sudo ln -s /usr/local/lib/nodejs/node-8.12.0/bin/node /usr/bin/node
 sudo ln -s /usr/local/lib/nodejs/node-8.12.0/bin/npm /usr/bin/npm
 sudo ln -s /usr/local/lib/nodejs/node-8.12.0/bin/npx /usr/bin/npx

Summarize

The above is the method of manually upgrading the node version under CentOs introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Detailed explanation of online deployment of NodeJs project CentOs linux server
  • How to install NodeJS V8.0.0 on CentOS
  • Node.js installation tutorial under Centos6.8
  • Steps to deploy nodejs on Centos
  • Nodejs script centos startup practical method

<<:  7 interview questions about JS this, how many can you answer correctly

>>:  Simple implementation of Mysql add, delete, modify and query statements

Recommend

Realize super cool water light effect based on canvas

This article example shares with you the specific...

MySQL replication table details and example code

MySQL replication table detailed explanation If w...

Solve the problem of margin merging

1. Merge the margins of sibling elements The effe...

Summary of Vue 3 custom directive development

What is a directive? Both Angular and Vue have th...

Mobile front-end adaptation solution (summary)

I searched online and found that many interviews ...

About the garbled problem caused by HTML encoding

Today a junior student asked a question. The HTML...

Mysql implementation of full-text search and keyword scoring method example

1. Introduction Today a colleague asked me how to...

Implementation of mysql backup strategy (full backup + incremental backup)

Table of contents Design scenario Technical Point...

Implementation of React star rating component

The requirement is to pass in the rating data for...

Mini Program natively implements left-slide drawer menu

Table of contents WXS Response Event Plan A Page ...

MySQL master-slave replication delay causes and solutions

Table of contents A brief overview of the replica...

Advanced techniques for using CSS (used in actual combat)

1. The ul tag has a padding value by default in Mo...

Introduction to version management tool Rational ClearCase

Rational ClearCase is a software configuration ma...

Several methods of calling js in a are sorted out and recommended for use

We often use click events in the a tag: 1. a href=...