Book Image

Microsoft Exchange Server Powershell Cookbook (Update)

Book Image

Microsoft Exchange Server Powershell Cookbook (Update)

Overview of this book

Table of Contents (21 chapters)
Microsoft Exchange Server PowerShell Cookbook Third Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Adding mailbox servers to a Database Availability Group


Once you've created a Database Availability Group, you'll need to add DAG members, which are servers running the Mailbox server role. In this recipe, you'll learn how to add mailbox servers to a DAG using the Exchange Management Shell.

How to do it...

To add a mailbox server to a DAG, use the Add-DatabaseAvailabilityGroupServer cmdlet:

Add-DatabaseAvailabilityGroupServer -Identity DAG '
-MailboxServer MBX1

In this example, the MBX1 server is added to a database availability group named DAG.

How it works...

In order to run the Add-DatabaseAvailabilityGroupServer cmdlet, the servers being added to the DAG must be running an Enterprise Edition of either Windows Server 2008 R2, Windows Server 2012 Standard Edition, or Windows Server 2012 R2 Standard Edition. This is due to the requirement of the Windows failover clustering component, which is required by the DAG. Additionally, the servers must not be a member of an existing DAG for you to successfully...