ubuntu 12.04服务器可以使用apt-get方式安装Node JS。
但是,安装完后的版本为v0.6.12的版本,如果想要使用新一点的版本,需要做如下配置:
复制代码 代码示例:
apt-get install
python-software-properties
apt-add-repository ppa:chris-lea/node.js
apt-get update
apt-get install nodejs
安装完成后检查下版本,使用命令查看:
复制代码 代码示例:
root@test:#node -v
v0.10.28
安装pm2这个软件
首先,安装一个npm的软件:
复制代码 代码示例:
apt-get install npm
npm -v
安装完成,安装pm2这个软件:
复制代码 代码示例:
root@test:# npm install -g pm2
在shell中输入pm,使用table补全,如果能出现pm2,说明已经正常安装。
PM2的主要功能:
Main features
Built-in load balancer (using the native cluster module)
Script daemonization
0s downtime reload for Node apps
Generate SystemV/SystemD startup scripts (Ubuntu,
centos...)
Pause unstable process (avoid infinite loop)
Restart on file change with --watch
Monitoring in console