What's the lowest cost, legal, Microsoft server stack you can assemble?

Posted by McKAMEY on Server Fault See other posts from Server Fault or by McKAMEY
Published on 2010-03-07T17:10:53Z Indexed on 2010/03/08 12:21 UTC
Read the original article Hit count: 360

Assuming that you have an app infrastructure that generally only requires:

  • ASP.NET MVC / C# / .NET
  • Database or NoSQL data store (must be accessible from C#)

Here's the challenge to you server gods:

  1. What is the least expensive configuration that will allow you to deploy to production in a way that doesn't break any licensing rules?
  2. In what ways does this solution differ from the "standard" Microsoft deployment scenario?
  3. Where does this solution's performance break down once the app begins to scale?

I'm not concerned about the hardware, only the server software itself. I would love to hear about any solutions you've personally put into production. Especially if they are unique alternatives.

For ideas, consider some of the possible variations, a) any Microsoft server solutions where they have lowered the barrier to entry to compete with OSS, or b) any OSS alternatives to Microsoft products which perform at a similar level.

An example of a): SQL Server 2008 Express Edition SP1 is a 100% free version of SQL Server which will scale to the needs of many smaller / early stage applications.

An example of b): running the Mono Framework on Linux.

An example of differing from the "standard" stack: running Mono on Linux will require a completely different server OS familiarity. None of the Windows-based knowledge really transfers.

An example of breaking down under scale: SQL Server Express will only scale to 1GB of memory and 4GB of disk storage. After that point, the application will need to move to one of the paid versions of SQL Server.

© Server Fault or respective owner

Related posts about sql-server-2008-express

Related posts about microsoft-licensing