博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTTP Error 502.5 - Process Failure 解决方案
阅读量:5134 次
发布时间:2019-06-13

本文共 856 字,大约阅读时间需要 2 分钟。

.netcore 2.1.4的程序部署到IIS后报以下错误:

=======================================================

HTTP Error 502.5 - Process Failure

Common causes of this issue:

The application process failed to start
The application process started but then stopped
The application process started but failed to listen on the configured port

Troubleshooting steps:

Check the system event log for error messages
Enable logging the application process' stdout messages
Attach a debugger to the application process and inspect

For more information visit: https://go.microsoft.com/fwlink/?LinkID=808681

 

解决方案,选中应用程序池-->高级设置-->加载用户配置文件设为true.

问题原因:IIS默认是不读取我们.netcore的配置文件appsettings.json,如下图命令执行donet path/application.dll时会出现错误提示:

找到对应的行发现是因为找不到对应的配置导致Object reference not set to an instance of an object.

修改应用程序池的设置后,问题解决。

 

转载于:https://www.cnblogs.com/cglandy/p/cglandy_dotnetcore_1.html

你可能感兴趣的文章
Java异常封装(自己定义错误码和描述,附源码)
查看>>
首页视频
查看>>
数组的创建及使用
查看>>
Vagrant安装完lnmp后,配置linux和windows共享文件并配置虚拟主机访问项目
查看>>
C#多线程那点事——信号量(Semaphore) Semaphore 信号量
查看>>
浏览器的线程有哪些
查看>>
PyTorch 实现kmax-pooling
查看>>
数据库点滴积累——查询
查看>>
将 Excel 导入到 SharePoint 列表
查看>>
C#中的yield关键字
查看>>
PHP获取中英文混合字符串长度及截取
查看>>
uva 11584 Partitioning by Palindromes(dp)
查看>>
面试题学习总结--三
查看>>
leetcode简单题目两道(5)
查看>>
(1)数据结构——线性表(数组)实现
查看>>
Content Providers的步骤,来自官网文档
查看>>
sql语句中的 inner join 、 left join 、 right join、 full join 的区别
查看>>
手动实现枚举器、泛型集合、单链表
查看>>
java反序列化漏洞原理研习
查看>>
LeetCode Algorithm 07_Reverse Integer
查看>>