我是靠谱客的博主 无奈芝麻,最近开发中收集的这篇文章主要介绍NETCore项目报错 An error occurred while starting the application,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

在发布到IIS的webApi项目中,运行时报出以上错误,

解决方法:

1、打开发布目录文件夹,找到web.config文件

2、打开web.config找到stdoutLogEnabled="false",把该值改为true,即->stdoutLogEnabled="true"

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".CMS.WebApi.dll" stdoutLogEnabled="false" stdoutLogFile=".logsstdout" hostingModel="InProcess" />
</system.webServer>
</location>
</configuration>

3、新建logs文件夹,再次运行网站,这时会自动生成一个log文件到logs文件夹中,打开即可查看报错原因进行处理了。

 

转载于:https://www.cnblogs.com/luckypc/p/10985927.html

最后

以上就是无奈芝麻为你收集整理的NETCore项目报错 An error occurred while starting the application的全部内容,希望文章能够帮你解决NETCore项目报错 An error occurred while starting the application所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部