Unhandled exception. System.IO.I

2022-05-20  本文已影响0人  寻找无名的特质

在ubuntu上编写asp.net core 程序,编译时出现错误:System.IO.IOException: The configured user limit (128) on the number of inotify instances has been reached.

方案一:

  1. sudo vim /etc/sysctl.conf
  2. 增加下面内容(环境变量)
  1. save the file
  2. sudo sysctl -p

方案二:

  1. 增加临时环境变量 export DOTNET_USE_POLLING_FILE_WATCHER=true

方案三

     echo fs.inotify.max_user_instances=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
上一篇下一篇

猜你喜欢

热点阅读