We have a huge amount of webApplications running on IIS6. Because we want to run an MS MVC2 or MVC3 Webapp we have to use IIS7. Migrating these huge amount of IIS6 webapps is way to time intensive for us.

is it possible to run IIS6 and IIS7 on one machine?

Thanks!

link|improve this question

"Because we want to run an MS MVC2..." MVC is compatible with IIS6 and 7. So I'm not sure what you mean by this. – P.Brian.Mackey Jun 1 '11 at 13:11
I heard that IIS6 has a lot of problems with MVC2. That is the reason why i think about IIS7. – elCapitano Jun 1 '11 at 13:16
2  
Haacked has a blog that will help you with IIS6 setup issues haacked.com/archive/2008/11/26/… I've gone through this myself and it wasn't too bad. Just read the blog carefully. – P.Brian.Mackey Jun 1 '11 at 13:19
feedback

3 Answers

up vote 4 down vote accepted

No - it isn't possible to run IIS6 and IIS7 on the same machine.

The version of IIS for a machine is dictated by the operating system and cannot be installed standalone.

For instance, Windows XP shipped with IIS5.1, Windows 2003 shipped with IIS 6.0, Windows 2008 shipped with IIS7.0 and Windows 2008 R2 shipped with IIS7.5.

link|improve this answer
feedback

You can use IIS 7 / 7.5 but just run the application pools in the "classic" pipeline mode, which is the same as running your application in IIS6.

That way you can handle legacy applications and still be free to leverage the advantages of IIS7. Here's an article on the pipeline differences.

http://learn.iis.net/page.aspx/243/aspnet-integration-with-iis-7/

link|improve this answer
Running apps in IIS7/7.5 under "classic" mode is more similar to IIS6, but it really isn't the same. There are plenty of other differences between the two. – Rob Levine Nov 23 '11 at 22:45
feedback

If you want them all to answer on port 80 you will have to setup some type of proxy to route calls to the correct IIS. Say you let one of them (perhaps IIS) run on port 80, then you need to setup IIS7 to run on another port and intercept calls to the IIS7-app and rewrite them to use another port.

Have you tried running your existing applications in IIS7? They might work?

link|improve this answer
Thank you for the idea. I havn't tried to run the current apps in IIS7, but the IT does not want this :( – elCapitano Jun 1 '11 at 13:15
you can't run different versions of IIS on the same machine. – Rob Levine Jun 1 '11 at 13:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.