To configure your gateway server to failover to multiple management servers you need to run Operations Manager Shell.
Start > All Programs > Microsoft System Center 2012 > Operations Manager Shell
Enter the following code (update the server names to reflect your environment).
$primaryMS = Get-SCOMManagementServer –Name “<name of primary server>” $failoverMS = Get-SCOMManagementServer –Name “<name of 1st failover>”,”<name of 2nd failover>” $gatewayMS = Get-SCOMGatewayManagementServer –Name “<name of gateway>” Set-SCOMParentManagementServer –Gateway $gatewayMS –PrimaryServer $primaryMS Set-SCOMParentManagementServer –Gateway $gatewayMS –FailoverServer $failoverMS
You will return to a command prompt if successful.
No comments:
Post a Comment