the configured user limit (128) on the number of inotify instances has been reached
在DotNet核心中读取json文件时出错“已达到inotify实例数量的配置用户限制(128)”
相关说明
https://www.cnblogs.com/kexxxfeng/archive/2017/10/04/7625205.html
解决方法:centos 7 参考配置
For Linux:
Check current value ofmax_user_instances
:
$ cat /proc/sys/fs/inotify/max_user_instances
increase that value:
$ echo 256 > /proc/sys/fs/inotify/max_user_instances
In order to make that change permanent add a line to/etc/sysctl.conf
:
fs.inotify.max_user_instances = 256