Search This Blog

Tuesday 21 January 2014

Deploying a Gateway Server - Part 3


As of 01/05/2017, this blog will not be updated or maintained

Distributing the Microsoft.EnterpriseManagement.GatewayApprovalTool
The Microsoft.EnterpriseManagement.GatewayApprovalTool.exe tool is needed only on the management server and it only has to be run once.

To copy Microsoft.EnterpriseManagement.GatewayApprovalTool.exe to management servers

  1. From a target management server, open the Operations Manager installation media \SupportTools directory.
  2. Copy the Microsoft.EnterpriseManagement.GatewayApprovalTool.exe from the installation media to the Operations Manager installation directory.



Registering the Gateway with the Management Group
This procedure registers the gateway server with the management group, and when this is completed, the gateway server appears in the Discovered Inventory view of the management group.

To run the gateway Approval tool

  1. On the management server that was targeted during the gateway server installation, log on with the Operations Manager Administrator account.
  2. Open a command prompt, and navigate to the Operations Manager installation directory or to the directory that you copied the Microsoft.EnterpriseManagement.gatewayApprovalTool.exe to.
  3. At the command prompt, run Microsoft.EnterpriseManagement.gatewayApprovalTool.exe /ManagementServerName=<managementserverFQDN> /GatewayName=<GatewayFQDN> /Action=Create
  4. If the approval is successful, you will see The approval of server <GatewayFQDN> completed successfully.
  5. If you need to remove the gateway server from the management group, run the same command, but substitute the /Action=Create flag for the /Action=Delete flag.
  6. Open the Operations console to the Monitoring view. Select the Discovered Inventory view to see that the gateway server is present. 


Installing Gateway Server
This procedure installs the gateway server. The server that is to be the gateway server should be a member of the same domain as the agent-managed computers that will be reporting to it.

Tip 
An installation will fail when starting Windows Installer (for example, installing a gateway server by double-clicking MOMGateway.msi) if the local security policy User Account Control: Run all administrators in Admin Approval Mode is enabled.

To run Operations Manager Gateway Windows Installer from a Command Prompt window

  1. On the Windows desktop, click Start, point to Programs, point to Accessories, right-click Command Prompt, and then click Run as administrator
  2. In the Administrator: Command Prompt window, navigate to the local drive that hosts the Operations Manager installation media. 
  3. Navigate to the directory where the .msi file is located, type the name of the .msi file, and then press ENTER.


To install the gateway server

  1. Log on to the gateway server with Administrator rights.
  2. From the Operations Manager installation media, start Setup.exe.
  3. In the Install area, click the Gateway management server link.
  4. On the Welcome screen, click Next.
  5. On the Destination Folder page, accept the default, or click Change to select a different installation directory, and then click Next
  6. On the Management Group Configuration page, type the target management group name in the Management Group Name field, type the target management server name in the Management Server field, check that the Management Server Port field is 5723, and then click Next. This port can be changed if you have enabled a different port for management server communication in the Operations console. 
  7. On the Gateway Action Account page, select the Local System account option, unless you have specifically created a domain-based or local computer-based gateway Action account. Click Next.
  8. On the Microsoft Update page, optionally indicate if you want to use Microsoft Update, and then click Next
  9. On the Ready to Install page, click Install
  10. On the Completing  page, click Finish.
To Install the gateway server by using the Command Prompt window
  1. Log on to the gateway server with Administrator rights.
  2. Open the Command Prompt window by using the Run as Administrator option.
  3. Run the following command, where path\Directory is the location of the Momgateway.msi, and path\Logs is the location where you want to save the log file. Momgateway.msi can be found in the Operations Manager installation media.

%WinDir%\System32\msiexec.exe /i path\Directory\MOMGateway.msi /qn /l*v path\Logs\GatewayInstall.log
ADDLOCAL=MOMGateway 
MANAGEMENT_GROUP="<ManagementGroupName>"
IS_ROOT_HEALTH_SERVER=0
ROOT_MANAGEMENT_SERVER_AD=<ParentMSFQDN>
ROOT_MANAGEMENT_SERVER_DNS=<ParentMSFQDN>
ACTIONS_USE_COMPUTER_ACCOUNT=0
ACTIONSDOMAIN=<DomainName>
ACTIONSUSER=<ActionAccountName>
ACTIONSPASSWORD=<Password>
ROOT_MANAGEMENT_SERVER_PORT=5723
[INSTALLDIR=<path\Directory>]

Configuring Gateway Servers for Failover Between Management Servers
Although gateway servers can communicate with any management server in the management group, this must be configured. In this scenario, the secondary management servers are identified as targets for gateway server failover. 

Use the Set-ManagementServer-gatewayManagementServer command in Operations Manager Shell, as shown in the following example, to configure a gateway server to failover to multiple management servers. The commands can be run from any Command Shell in the management group.

To configure gateway server failover between management servers
  1. Log on to the management server with an account that is a member of the Administrators role for the management group.
  2. On the Windows desktop, click Start, point to Programs, point to System Center Operations Manager, and then click Command Shell.
  3. In Command Shell, follow the example that is described in the next section.

Description
The following example can be used to configure gateway server failover to multiple management servers.

Code
$GatewayServer = Get-SCOMGatewayManagementServer –Name “ComputerName.Contoso.com”
$FailoverServer = Get-SCOMManagementServer –Name “ManagementServer.Contoso.com”,”ManagementServer2.Contoso.com”
Set-SCOMParentManagementServer -GatewayServer $GatewayServer -FailoverServer $FailoverServer

I hope that this 3 part series was helpful.

No comments:

Post a Comment

Note: only a member of this blog may post a comment.