> ASP.NET Core > HTTP Error 502.5 - Process Failure
2389 단어 아 SP. 네 TASP.NET_Core
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
web.config 설정이 잘못되었을 수 있습니다.
HTTP Error 502.5 - Process Failure" asp.net core 2 error in Azure · Issue #406 · aspnet/IISIntegration
asp.net core2의 web.config의 초기 상태는 다음과 같습니다.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\MarketingMetric.Web.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
</system.webServer>
</configuration>
<!--ProjectGuid: d17d575b-0ed7-4c21-a91d-106c04de5c12-->
Reference
이 문제에 관하여(> ASP.NET Core > HTTP Error 502.5 - Process Failure), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sugasaki/items/5a72b9a1e45cd90076c9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)