UBUNTU 中的未知 FIND 进程 运行

Unknown FIND processes running in UBUNTU

我见过很多这样的 FIND 过程。我 运行 nodejs 使用 express 并尝试使用 POSTMAN 来访问 Web 服务。我不知道是什么触发了这些进程,这件事正在减慢服务器速度。

虽然它确实提到了 node_modules,但我不知道发生了什么。注意:我正在使用 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/'],