我试图杀死服务器中正在运行的子进程。基本上,子进程运行我在React的在线终端中编写的约翰尼五码到我的服务器。当我运行子进程时,代码运行良好,但是如果我想终止子进程,则无法停止服务器而无法这样做。我尝试使用Control-C
和.exit()
这样做,但是似乎都没有用。
codeRouter
.post('/codeAPI', (req, res) => {
console.log(req.body)
let fileName = `johnnyFiles/${req.body.currentFile}`
fs.writeFileSync(fileName, req.body.currentCode, (err) => {
if (err) throw err
})
let id = shortid.generate()
let fileObject = {
fileName: req.body.currentFile,
fileContents: req.body.currentCode,
ID: id
}
data = [fileObject, ...data]
fs.writeFileSync('data/fileData.json', JSON.stringify(data), (err) => {
if (err) throw err
})
res.json(data)
///////////////////////////////////////////
let nodeSpawn = spawn('node', [fileName], {
//detached: true,
shell: true
})
nodeSpawn.stdout.on('data', (data) => {
console.log("OUTPUT", data.toString())
})
nodeSpawn.stderr.on('data', (data) => {
console.log("ERRORS", data.toString())
})
nodeSpawn.on('exit', (code) => {
console.log(`Child exited with code ${code}`)
nodeSpawn.kill('SIGINT')
})
})
`
答案 0 :(得分:0)
您可以使用linux命令行。
要使用命令查看正在运行的进程,请使用:
pgrep node
要终止该进程,您可以使用:
kill <pid>
或者强制关闭
kill -9 <pid>
或者如果您想杀死所有节点进程
kill $(pgrep node)