.netcore3.1.8部署在IIS上經常性報錯(exit code 80131506)


一打開頁面就報錯,偶爾正常,系統日志中錯誤如下:

Application: w3wp.exe
CoreCLR Version: 4.700.20.41105
.NET Core Version: 3.1.8
Description: The process was terminated due to an internal error in the .NET Runtime at IP 69D00BE5 (69CA0000) with exit code 80131506.

在.netframework 下,直接修改webconfig文件即可,增加

 <runtime>
    <gcServer enabled="true"/>
    <gcConcurrent enabled="true"/>
  </runtime>
</configuration>

 但在.netcore中,修改webconfig根本沒效果,只能在工程中修改,即.csproj文件,增加如下配置:

<PropertyGroup>
    <ServerGarbageCollection>false</ServerGarbageCollection>
    <ConcurrentGarbageCollection>false</ConcurrentGarbageCollection>
 </PropertyGroup>

  搞定

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM