I am doing some preliminary research on Windows Azure. The idea is to move 200+ ASP classic websites to Windows Azure. I am wondering if this is possible and feasible? Can I host that many websites on a single VM? Also note that each website needs to have its own set of email addresses.
|
|
closed as off topic by Jerry Coffin, BNL, Flexo♦, astaykov, Graviton Aug 2 '12 at 3:44
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
There's absolutely no reason why you couldn't host all those sites on Azure VM (assuming you're talking about the preview Virtual Machine functionality). You get your own isolated machine, with its own IIS and IP. What you put on it is up to you, but it's no different than getting a VPS from any other company (rackspace etc.). Obviously this is assuming that your sites are not very resource heavy and the memory etc. you get with different VM sizes can support the use. |
|||||
|
|
Marek's answer isn't wrong, but please don't use "Virtual Machines" for this, and instead use Cloud Services (specifically, a web role). A web role lets you deploy just your code (in this case: websites) without having to mess with managing a full VM. In short, PaaS is better than IaaS, as long as your app fits the model (which IIS-based websites do in Windows Azure). I don't know what "each website needs to have its own set of email addresses" means or how it relates. |
|||
|