Node js - 进程数 100 / 100 (100%) - cPanel 共享托管

问题描述 投票:0回答:1

我正在使用Linux共享主机。我无法访问终端。显示

cagefs_enter: Unable to fork
。当我单击“Setup Node.js App”时,它显示
The received data is wrong. Contact support for resolution. cagefs_enter: Unable to fork

使用 cron 作业,如何在一小时后终止所有未使用的 Nodejs 进程?

shared-hosting
1个回答
1
投票

您可以使用

pkill -15 node
。这将终止节点进程。

您也可以使用

pkill -9 node
killall node
但这些都比较极端。

© www.soinside.com 2019 - 2024. All rights reserved.