问题现象:
System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached, or the per-process limit on the number of open file descriptors has been reached
解决办法:
修改配置:
sudo vim /etc/sysctl.conf fs.inotify.max_user_watches=50000 fs.inotify.max_user_instances = 1024
执行更改:
sudo sysctl -p
经验证Ok
标签:inotify,configured,number,been,instances,user,reached,Dotnet8 From: https://www.cnblogs.com/oumi/p/18091902