我想在单个服务器上运行2个node.js应用程序,使用pm2,那些应用程序需要通过puppet进行部署。请您指教是否可行。
此致 巴拉
答案 0 :(得分:1)
你可以通过pm2运行相同的nodejs app作为集群。 https://github.com/Unitech/pm2#commands-overview
pm2 start app.js -i 4 # Start 4 instances of application in cluster mode
所以它也平衡了你的过程。 它与木偶无关。
要运行多差异节点应用,您可以检查process.yml
http://pm2.keymetrics.io/docs/usage/application-declaration/
而不是
# Start all applications
$ pm2 start process.json