我正在使用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 进程?
您可以使用
pkill -15 node
。这将终止节点进程。
您也可以使用
pkill -9 node
或 killall node
但这些都比较极端。