.net core 3.1 项目部署到生产环境(windows server2012 R2),访问报错HTTP Error 500.30 - ANCM In-Process Start Failurewindow logs:Application /LM/W3SVC/5/ROOT with physical root D:\XXXX\ failed to load...
.net core 3.1 项目部署到生产环境(windows server2012 R2),访问报错
HTTP Error 500.30 - ANCM In-Process Start Failure
window logs:
Application '/LM/W3SVC/5/ROOT' with physical root 'D:\XXXX\' failed to load coreclr. Exception message:
CLR worker thread exited prematurely
Application '/LM/W3SVC/5/ROOT' with physical root 'D:\XXXX\' hit unexpected managed exception, exception code = '0xe0434352'. Please check the stderr logs for more information.
在web.config 将hostingModel="InProcess" 改为 hostingModel="OutOfProcess"
本文标题为:Asp.netcore 托管模型- 进程内托管和进程外托管(inprocess out OutOfProcess)
基础教程推荐
- 如何用C#创建用户自定义异常浅析 2023-04-21
- Unity虚拟摇杆的实现方法 2023-02-16
- C#使用SQL DataAdapter数据适配代码实例 2023-01-06
- C#实现归并排序 2023-05-31
- C#使用NPOI将excel导入到list的方法 2023-05-22
- C#中参数的传递方式详解 2023-06-27
- C#执行EXE文件与输出消息的提取操作 2023-04-14
- C#使用Chart绘制曲线 2023-05-22
- C# TreeView从数据库绑定数据的示例 2023-04-09
- 浅谈C# 构造方法(函数) 2023-03-03
