ubuntu 下安装nodejs以及pm2

 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

PM2地址:https://github.com/Unitech/pm2


本文出自 “风之别鹤” 博客,请务必保留此出处http://addam.blog.51cto.com/5041993/1407087

ubuntu 下安装nodejs以及pm2,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。