我无法停止/杀死我的discord.js机器人(nodejs npm)。
并尝试了命令: npm停止
npm ERR! missing script: stop
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2019-07-09T09_14_24_836Z-debug.log
答案 0 :(得分:0)
您没有添加停止脚本。
This question将为您提供帮助。
如果在app.js中进行设置,则可以使其变得非常简单:
中process.title = myApp;
然后,在scripts.json"scripts": { "start": "app.js" , "stop": "pkill --signal SIGINT myApp" }
您说您尝试杀死。您没有弄清楚您使用了什么信号。我非常确定kill -9 <PID>
可以正常工作(即使这有点残酷和不必要)。
您有一个杀伤信号列表here。