Error: ENOSPC: System limit for number of file watchers reached

577 阅读1分钟

Error: ENOSPC: System limit for number of file watchers reached

提示: 该错误的意思是系统监视的文件数量已达到限制!!
解决方案:
修改系统监控文件数
我的是CentOS7,其他系统应该差不多

sudo vim /etc/sysctl.conf

在底部添加一行

fs.inotify.max_user_watches = 524288

然后保存并退出!

:wq

执行结果

sudo sysctl -p