2

I'm developing an angular 7 application with ASP.NET CORE 2.2 and when I deploy it in IIS 8.5 which is a Windows Server 2012 R2, all the web applications host in IIS gives 503 Service Unavailable error and error goes away when I uninstall .NET Core 2.2 Runtime & Hosting Bundle

When I check the event view it shows me the following error:

A listener channel for protocol 'http' in worker process '<ProcessId>' serving application pool '<ApplicationPoolName>' reported a listener channel failure.

Tried online and it was not success anyone has any solution?

Oshadha
  • 546
  • 10
  • 25

1 Answers1

4

It took me more than one day to find a solution for this. Before you install ASP.NET Core/.NET Core: Runtime & Hosting Bundle (latest versions), you need to ensure you have installed Microsoft Visual C++ 2015 Redistributable. in the system.

Installation(ASP.NET Core/.NET Core: Runtime & Hosting Bundle) doesn't say anything if Microsoft Visual C++ 2015 Redistributable is missing.

This helped to fixed the issue that I had. Hope this will help you.

Oshadha
  • 546
  • 10
  • 25