Remotely installing a simple network load balance on Server 2012 core using PowerShell
Remotely installing a simple network load balance on Server 2012 core using PowerShell
Recently in deploying a series of web servers I ran a across a situation where I needed a simple load balance between four servers effectively making a small web farm. In my case I wanted to perform the NLB installation and configuration using PowerShell so I could script it as part of an overall disaster recovery plan. The cmdlets for NLB have been available since the release of Server 2008 R2 I just hadn’t had a chance to try them out. Now was the time to put those cmdlets to the test.
The setup
(This content applies to Server 2008R2 and Server 2012)
My environment is very simple in this case, I have a management box running the new Windows 8 with the RSAT administration tools, but a Windows 7 box would work as well. You will need the RSAT tools for NLB so if you don’t have them jump out to Microsoft and download them.
I also have four Server 2012 core boxes already joined to the domain with IIS deployed. Before I provision the new websites I want to get the load balancing implemented and tested using the default website.
Implementing Microsoft NLB – remotely
The first step is to install the Network Load Balancing (NLB) feature on the servers. From the management station create a PowerShell remote session to the servers.
1 2 | PS> $session=New-PsSession –ComputerName web1,web2,web3,web4 PS> Invoke-Command –session $session {Import-Module ServerManager} |
* Note, the above module import is not required on Server 2012
1 | PS> Invoke-Command –session $session {Add-WindowsFeature NLB} |
After NLB is installed (no need to reboot) use the NLB cmdlets on your management client to create the load balance and add the additional nodes. In my situation I’m going to create the load balance on web1 with a cluster IP address of 10.211.55.150 and then add nodes web2, web3, and web4.
1 2 3 4 5 6 7 8 9 | PS> New-NlbCluster -HostName Web1 -InterfaceName Ethernet -ClusterName web -ClusterPrimaryIP 10.211.55.150 -OperationMode Multicast PS> Get-NlbCluster -HostName s1 | Add-NlbClusterNode -NewNodeName Web -NewNodeInterface Ethernet PS> Get-NlbCluster -HostName s1 | Add-NlbClusterNode -NewNodeName Web3 -NewNodeInterface Ethernet PS> Get-NlbCluster -HostName s1 | Add-NlbClusterNode -NewNodeName Web4 -NewNodeInterface Ethernet |
Add the new cluster IP address to your DNS and you’re good to go. I tested the load balance using the default website created during the IIS installation and failed some of the servers to make sure the load balance was performing correctly.
If you’re in need of a quick and simple load balancer, you have a free one built into windows server 2008R2 and 2012. Easy to install and configure using PowerShell.
Knowledge is PowerShell,
Jason is Director of PowerShell Technologies and an Instructor at Interface Technical Training in Phoenix, AZ.
Upcoming PowerShell classes taught by Jason:
- PPS300: PowerShell v2 and v3 Training for Administrators
- PS350AD: PowerShell v2 and v3 Training for Active Directory
- PPS350WMO: PowerShell v2 and v3 Training for Windows Management Instrumentation (WMI)
- PS400: PowerShell v2 and v3 Scripting and Tool Making Training
Attend in person or Online with RemoteLive. Also available in Video Training.
You May Also Like
Network load balance, NLB, Powershell, Remote deploy, Server 2012, web farm
Agile Methodology in Project Management
0 162 0In this video, you will gain an understanding of Agile and Scrum Master Certification terminologies and concepts to help you make better decisions in your Project Management capabilities. Whether you’re a developer looking to obtain an Agile or Scrum Master Certification, or you’re a Project Manager/Product Owner who is attempting to get your product or … Continue reading Agile Methodology in Project Management
How to clone a Windows Server 2012 or 2012 R2 Domain Controller
3 1568 3One of the coolest new features in Window Server 2012 and Windows Server 2012 R2 is the ability to clone a Domain Controller. In the past, if we had virtualized Domain Controllers and we actually took a snapshot of it and then rolled back to that snapshot, it would break the logon service on that … Continue reading How to clone a Windows Server 2012 or 2012 R2 Domain Controller
Detailed Forensic Investigation of Malware Infections – April 21, 2015
4 647 5How does an investigator hunt down and identify unknown malware? In this recording of our IT Security training webinar on April 21, 2015, Security expert Mike Danseglio (CISSP / CEH) performed several malware investigations on infected computers and identify symptoms, find root cause, and follow the leads to determine what’s happening. He demonstrated his preferred … Continue reading Detailed Forensic Investigation of Malware Infections – April 21, 2015
Pingback: How to deploy IIS websites to a web farm using PowerShell | Interface