[ Node | PM2 ] watch 模式下无限重启

最初配置的ecosystem.config.js

module.exports = {
  apps: [
    {
      name: 'development_platform_server',
      script: 'bin/www',
      instances: 1,
      autorestart: true,
      watch: true,
      out_file: './logs/out.log',
      error_file: './logs/error.log',
      log_date_format: 'YYYY-MM-DD HH:mm:ss',
      max_memory_restart: '500M'
    }
  ]
}

然后就无限重启了
[ Node | PM2 ] watch 模式下无限重启_第1张图片
从下面的错误日志中可以发现, logs文件内的文件改变,触发了 watch 的监听检测。

error: Change detected on path logs/error-0.log for app development_platform_server

修改后的ecosystem.config.js,使用ignore_watch属性去忽略一些不想监听的。

module.exports = {
  apps: [
    {
      name: 'development_platform_server',
      script: 'bin/www',
      instances: 1,
      autorestart: true,
      watch: true,
      out_file: './logs/out.log',
      error_file: './logs/error.log',
      log_date_format: 'YYYY-MM-DD HH:mm:ss',
      max_memory_restart: '500M',
      ignore_watch: 'logs'
    }
  ]
}

你可能感兴趣的:(Node.js)