Node.js 在UBUNTU中运行的未知查找进程

Node.js 在UBUNTU中运行的未知查找进程,node.js,mongojs,Node.js,Mongojs,我已经看到了很多这样的发现过程。我正在用express运行nodejs,并试图用POSTMAN打开网络服务。我不知道是什么触发了这些进程,这件事正在减慢服务器的速度 虽然它确实说了一些关于node_模块的事情,但我不知道发生了什么。注意:我正在使用MongoDb和MongoJS插件 root 23597 1 0 Jun27 ? 00:10:03 find -L / ( -ipath /.git -prune -or -ipath /node_modules -pr

我已经看到了很多这样的发现过程。我正在用express运行nodejs,并试图用POSTMAN打开网络服务。我不知道是什么触发了这些进程,这件事正在减慢服务器的速度

虽然它确实说了一些关于node_模块的事情,但我不知道发生了什么。注意:我正在使用MongoDb和MongoJS插件

root     23597     1  0 Jun27 ?        00:10:03 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     23669     1  0 Jun27 ?        00:09:53 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     23723     1  0 Jun27 ?        00:09:43 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     23788     1  0 Jun27 ?        00:09:36 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     23846     1  0 Jun27 ?        00:09:28 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     23915     1  0 Jun27 ?        00:09:19 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     23988     1  0 Jun27 ?        00:09:10 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     24100     1  0 Jun27 ?        00:09:02 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or
root     24284     1  0 Jun27 ?        00:08:52 find -L / ( -ipath /.git -prune -or -ipath /node_modules -prune -or

我终于找到了原因。结果证明NODEMON生成了所有这些查找进程

根据github上的讨论,进行以下更改以避免nodemon尝试查找以下目录:

nodemon/lib/config/defaults.js

ignore: ['.git/', 'node_modules/', 'bower_components/', '.sass-cache/'],