3

nginx是如何出现在进程列表中的呢?

$ ps -ef | grep nginx
... S     9:16   0:08.43 nginx: worker process
... Ss    9:16   0:00.00 nginx: master process nginx

我想在 node.js 中更改我的 CLI 程序的进程名称。

4

1 回答 1

5

在 Node.js 中,您可以更改process.title以设置流程的标题,如ps.

于 2012-05-01T14:42:34.223 回答