程序的自动重启与永生(supervisor and pm2)

I used to think that the supervisor is a daemon, But I'm wrong.

Now I will describe what is supervisor.

What is supervisor

Node-supervisor is a little supervisor script for nodejs

It runs your program, and watches for code changes, so you can have hot-code reloading-ish behavior, without worrying about memory leaks and making sure you clean up all the inter-module references, and without a whole new require system.

What is pm2

PM2 is a production process manager for Node.js applications with a built-in load balancer. It allows you to keep applications alive forever, to reload them without downtime and to facilitate common system admin tasks.

Over...

Sorry...

Not yet


简言之 supervisor 就是关注你的代码,一旦发生变动,就重启程序。相当于热启动,不用每次修改代码就自己执行启动命令。

当然在你程序崩溃时,它也会尽心尽心的帮你重启。

如果在你修改代码时出现错误,多次重启无效,它就认为你没救了,不得已放弃治疗。

是不是挺有意思,我想你会喜欢努力的supervisor的。

用一个词来形容supervisor就是 自动重启

supervisor的使用很简单。

因为之前提到了,Node-supervisor是node的一个脚本,因此在node的配置文件中配置下脚本就可以了。

supervisor的安装

npm install --save supervisor

supervisor的脚本配置

在config.json中的json中添加一个脚本,比如autoStart

"scripts": {
  "start": "node ./bin/www",
  "autoStart": "node-supervisor node ./bin/www"
}

然后在使用时 使用 npm run autoStart 就可以了。

如果你不想让supervisor 监听某些文件的变化 可以使用 -i 参数进行忽略。

所以,supervisor 其实和 守护进程是没啥关系的。


pm2 是用来守护进程的 它可以让你的应用处于活动状态

如果把supervisor的功能叫做自动重启的话,我可以pm2的功能称之为永生

安装pm2

npm install pm2 -g

pm2的功能很强大,具备负载均衡的能力,这里只提供一些简单常用的命令

pm2 可以启动任何类型的进程

pm2 start app.js        //启动js文件
pm2 start echo.php      //启动php文件
pm2 start echo.py       //启动py文件
pm2 start echo.sh       //启动sh文件
pm2 start echo.rb       //启动ruby文件
pm2 start app.json      //启动json文件
pm2 start ./binary-app  //启动二进制代码
  1. pm2 查看启动了哪些进程
pm2 list
  1. pm2 停止所有进程
pm2 stop all
  1. pm2 重启所有进程
pm2 reload all
  1. pm2 删除所有进程
pm2 delete all

你可能感兴趣的:(程序的自动重启与永生(supervisor and pm2))