Is ASP.NET MVC required to reboot the server?

Does ASP.NET MVC install a server reboot?

I created quite a few ASP.NET MVC sites on production servers at one time, but today I am deploying a server without MVC installed for the first time.

So, I installed the latest version of MVC, restarted IIS, and went through the usual hoops to set up the MVC website on IIS6 (aspnet_isapi.dll, install the correct version of .NET, etc.).

However, the site behaves exactly the same as on a website other than MVC. The root URL is explicitly mapped to default.aspx, but any controller / action URL all results in 404.

I had two colleagues who checked the site configuration, both made thumbs.

I will not restart the server without a good reason. Do any of you know if I need a reboot after installing ASP.NET MVC?

+3
source share
2 answers

No, this is not so (at least in Win2k8 x64, Win2k3 x64)

Kindness,

Dan

+6
source

No reboot required, check out this article: Deploy ASP.NET MVC for IIS 6

0
source

Source: https://habr.com/ru/post/1725383/


All Articles