pm2命令监测服务

pm2操作命令

​pm2 start ./src/index.js 监听任务
​pm2 start ./src/index.js --watch 监听任务,发生改变自动刷新

自定义启动文件,创建一个test.json的示例文件,格式如下

{
  "apps":[
    {
      "name": "test",
      "cwd": "/data/wwwroot/nodejs",
      "script": "./test.sh",
      "exec_interpreter": "bash",
      "min_uptime": "60s",
      "max_restarts": 30,
      "exec_mode" : "cluster_mode",
      "error_file" : "./test-err.log",
      "out_file": "./test-out.log",
      "pid_file": "./test.pid"
      "watch": false
    }
]}
pm2 start app.js              # 项目启动
pm2 stop all                  # 停止所有pm2启动的应用
pm2 stop 0                    # 停止进程id为0的进程
pm2 restart all               # 重启所有应用
pm2 reload all                # 0延迟重新加载
pm2 list                      # 列出所有用pm2启动的进程
pm2 monit                     # 显示每一个应用的内存和cpu使用情况
pm2 show [app-name]           # 显示当前应用的所有信息

pm2 logs                      # 显示所有应用的日志
pm2 logs [app-name]           # 显示当前应用的日志
pm2 logs --json               # 以json格式展示日志

参数说明:

apps:json结构,apps是一个数组,每一个数组成员就是对应一个pm2中运行的应用
name:应用程序的名称
cwd:应用程序所在的目录
script:应用程序的脚本路径
exec_interpreter:应用程序的脚本类型,这里使用的shell,默认是nodejs
min_uptime:最小运行时间,这里设置的是60s即如果应用程序在60s内退出,pm2会认为程序异常退出,此时触发重启max_restarts设置数量
max_restarts:设置应用程序异常退出重启的次数,默认15次(从0开始计数)
exec_mode:应用程序启动模式,这里设置的是cluster_mode(集群),默认是fork
error_file:自定义应用程序的错误日志文件
out_file:自定义应用程序日志文件
pid_file:自定义应用程序的pid文件
watch:是否启用监控模式,默认是false。如果设置成true,当应用程序变动时,pm2会自动重载。这里也可以设置你要监控的文件。
最精简版本
{
    "name": "manage",      //项目名称
    "script": "./bin/www", //要执行的脚本
    "watch":"true",        //自动监听
}

{
  "apps": [
    {
      "name": "后台-3000",
      "script": "./api/api/bin/www",
      "watch": true
    }
  ]
}

原文在我的博客上欢迎大家来踩踩,前端nextjs服务端渲染:https://www.qqjishu.net/detail/127

你可能感兴趣的:(pm2命令监测服务)