美文网首页
node 服务自启

node 服务自启

作者: fighterboy | 来源:发表于2018-03-23 10:43 被阅读0次

    最近遇到 自己写的 node 容易挂掉  ;

    还没来的急看log日志  就得催的重启

    一怒之下写了个自动重启

    来点干货

    check.js

    var exec = require('child_process').exec;

    check();

    function check(){

    var last = exec('lsof -i:3000');  //要监听的端口

    last.on('exit',function(code){

    if(code !=0){

    run(); console.log('主服务已关闭,马上重启');

    }else{

    console.log('主服务活跃中') } });

    setTimeout(check,1000);}

    function run(){

    var last = exec('node serve.js'); //要启动的文件

    last.on('exit',function(code){ if(code == 0){

    console.log('主服务重启成功'); }

    else{

    console.log('主服务重启失败');

    } })}

    相关文章

      网友评论

          本文标题:node 服务自启

          本文链接:https://www.haomeiwen.com/subject/irbtcftx.html