尝试在pm2中运行时,nodejs环回api未运行

时间:2018-11-29 13:52:24

标签: express pm2 loopback

我的pm2生态系统.config.js配置如下:  HGBackend没有运行。其他人正在pm2中运行

module.exports = {
  apps : [
    {
     name      : "HGBackend",
     cwd       : "hgbackend/server",
     script    : "config.json"
    },
    {
    name       : "HGBlockchain",
    cwd        : "hgblockchain/localgrammes",
    script     : "index.js"
   // args       : "start:staging"
   // instances  : 4,
   // exec_mode  : "cluster"
  },
  {
    name   : "HGWeb",
    cwd    : "hgweb/src/server",
    script : "server.js",
    description: ""
  }

]}

除HGBackend之外,所有其他功能均正常工作。 HGBackend是回送api。其他人则做出反应并表达api。 不运行HGBackend的原因是什么?谁能帮我吗?

2 个答案:

答案 0 :(得分:0)

对于HGWebHGBlockchain应用程序,您正在server.js配置中执行相关的script。对于HGBackend,您将config.json作为script传递。对于Loopback,您还需要执行server.js

答案 1 :(得分:0)

是的,我已经纠正了。 fatasource.json文件中的实际问题。谢谢