admin管理员组文章数量:1345196
I am using pm2 version 4.2.3
When I run this mand: pm2 start node launchers/engine_launcher.js --name "engine"
, it starts the following:
id │ name │ namespace │ version │ mode │ pid
------------------------------------------------------------------------------
12 │ engine │ default │ 0.34.0 │ fork │ 893
13 │ engine │ default │ 1.0.0 │ fork │ 8946
I want only one process to be started.
If I pm2 delete engine
, both go away.
launchers/engine_launcher.js
is a regular javascript script.
What causes this problem? How can I start only one version of my script?
This doesn't happen for other scripts, only this one.
I am using pm2 version 4.2.3
When I run this mand: pm2 start node launchers/engine_launcher.js --name "engine"
, it starts the following:
id │ name │ namespace │ version │ mode │ pid
------------------------------------------------------------------------------
12 │ engine │ default │ 0.34.0 │ fork │ 893
13 │ engine │ default │ 1.0.0 │ fork │ 8946
I want only one process to be started.
If I pm2 delete engine
, both go away.
launchers/engine_launcher.js
is a regular javascript script.
What causes this problem? How can I start only one version of my script?
This doesn't happen for other scripts, only this one.
Share Improve this question asked Mar 22, 2020 at 14:25 Benjamin CrouzierBenjamin Crouzier 42k48 gold badges177 silver badges239 bronze badges2 Answers
Reset to default 9Instead of start node app.js
use just start app.js
.
pm2 delete 12
is one way to do it.
本文标签: javascriptpm2 starts two duplicate processes with a different versionStack Overflow
版权声明:本文标题:javascript - pm2 starts two duplicate processes with a different version - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736087a2530037.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论