1

I'm a research student and I want to build a windows cluster at home with my laptops to test my parallel codes.

The problem is I'm using Windows 7 Home Premium, not a server edition.

I'm using Visual Studio 2010 Ultimate and I installed Microsoft HPC Packs with SP1 and able to simulate MPI codes at my localhost without a problem. Now I want to see the real application.

I have 3 other laptops at home and windows 7 starter is installed on them. They don't have visual studio installed because I have only 1 license from the university.

So is there any way to build a windows cluster with these configurations??

Emre Turkoz
  • 868
  • 1
  • 23
  • 33

2 Answers2

3

No, a Windows cluster will only work with Windows Server Enterprise or above.

To simulate this a good way is to host Windows Server operating systems on virtual machines. A good resource for this is here.

You do need Windows Server licenses to do this, however -- if you have an MSDN subscription you may find that you can get development licenses under that.

Jeremy McGee
  • 24,842
  • 10
  • 63
  • 95
  • thank you so much, i will check that. you mean i can make it using virtualbox or something like that right? – Emre Turkoz Apr 28 '11 at 09:29
  • Yes, something like VirtualBox should work just fine. I've personally not tried it -- I tend to use VMWare Workstation as it does neat snapshots and suchlike -- but the price is right! – Jeremy McGee Apr 28 '11 at 10:49
1

I've done it in HyperV a number of times. You'll need to create a domain controller (using Server STD or Enterprise) as well as N nodes that run Server HPC edition (a lightweight/simplified server edition). Easiest thing to setup would be to create a single HPC (VM) that contains your DC, DNS, DHCP, and HPC Head Node/WCF Broker. Then, you can add a few compute nodes (also VMs) (2 or 3 is good enough for testing) using the HPC server edition and be all set.

argodev
  • 243
  • 2
  • 11