ubuntu安裝nodejs

 

使用apt安裝nodejs,node

sudo apt install nodejs  python

安裝npmc++

apt install npm npm

源碼安裝 瀏覽器

1.下載Nodejs源碼bash

http://nodejs.cn/download/網絡

wget -c  資源地址 app

-c表示當網絡中斷恢復後斷點續傳ssh

下載後解壓,進入解壓目錄tcp

2.生成Makefile

編譯須要依賴python環境、c、c++

apt install gcc

 

apt install python

./configure --prefix=/usr/local/nodejs/

運行python腳本

3.make -j 4 && sudo make install

安裝make工具

apt install make
apt install make-guile

-j 4 表示用4個線程去編譯

4.配置環境變量

vi ~/.bashrc

修改完後 source ~/.bashrc 使配置生效

env | grep PATH

env顯示環境變量

 

 

啓動node

node

查看nodejs版本

node --version

 

最簡單的http服務

1.使用require引入http模塊

2.建立http服務

3.偵聽端口

server.js

'use strict'

var http = require('http');

var app = http.createServer(function(req,res){
    res.writeHead(200,{'Content-Type':'text/plain'});
    res.end('HelloWorld\n');
}).listen(8080,'0.0.0.0');

啓動Nodejs服務

netstat -ntpl 查詢全部tcp端口

node app.js

瀏覽器訪問ip:8080  顯示HElloWorld

 

 

 

啓動程序的三種方式

node app.js

nohub node app.js

forever start app.js

 

使用forever啓動

1.安裝forever

yum -y install forever -g 

-g 表示在任何目錄下使用forever,若是不加,只能在當前目錄使用

若是執行失敗

使用 npm config set strict-ssl false

forever start server.js 啓動服務

forever stop server.js 關閉服務

 

ssh root@IP 使用ssh鏈接

相關文章
相關標籤/搜索