In this series off blog post I am going to take you true the steps I took to install System Center Operations Manager 2016. The Environment will be installed using the following software:
My Test environment consist of the following servers,
- DC01 – Domain Controller
- SQL01 – Microsoft SQL 2016 server
- DATA01 – Data Server
- MS01 – Scom Management Server 01
- MS02 – Scom Management Server 02
- WEB01 – Scom Web Console Server,
Here you can find the previous blogposts
- SCOM 2016 – Install System Center Operations Manager 2016 – Part 1
- SCOM 2016 – Install System Center Operations Manager 2016 – Part 2
- SCOM 2016 – Install System Center Operations Manager 2016 –Part 3
- SCOM 2016 – Install System Center Operations Manager 2016 – Part 4
- SCOM 2016 – Install System Center Operations Manager 2016 – Part 5
- SCOM 2016 – Install System Center Operations Manager 2016 – Part 6
In this part we are going to install the second Management Server and the System Center operations Manager Console.
First we are going to install the System Center Operations Manager Console. The System Center Operations Manager Console will be installed on Windows 10 domain joined machine. Before we can install the System Center Operations Manger console we need to install Report Viewer Controls. These can be download from here. I am using a Group Policy to deploy the Report Viewer Controls.
- Start the "Group Policy Management" console
- Right click on the Group Policy Object that is applied to all the workstation that you want to deploy the Report Viewer and click “Edit”
- In the “Group Policy Management Editor” navigate to “Computer Configuration – Policies – Software Settings – Software installation” then right click on “Software installation” then click on “New” then “Packages”
- Navigate to the path that you placed the installation files and select “Reportviewer.msi” then click “Open”
- On the “Deployment Screen” select “Advanced” and click “OK”
- On the “Microsoft Report Viewer 2015 Runtime Properties” page, click “OK”
- Restart the client computer that is available in the Organizational Unit that you want to use. The result should look something like this:
- On the “Windows Client” where you want to install the “System Center Operations Manager Console” click “Setup.exe”
- On the “Operations Manager” screen click “Install”
- On the “Operations Manager Setup” page, in the section“Select feature to Install” select “Operations Manager Console” and click “Next”
- On the “Operations Manager Setup” page, in the section “Select installation location” click “Next”
- On the “Operations Manager Setup” page, in the section “Proceed with Setup” screen click “Next”
- On the “Operations Manager Setup” page, in the section “Proceed read the license terms” Screen check “I have read, understood and agree with the license term” and click “Next”
- On the “Operations Manager Setup” page, in the section “Diagnostic and usage Data” screen click “Next”
- On the “Operations Manager Setup” page, in the section “Microsoft Update” screen select “Off” and click “Next”
- On the “Operations Manager Setup” page, in the section “Installation Summary” screen click “Install”
- On the “Operations Manager Setup” page, in the section “Setup is Complete” click “Close”
- The end result should look something like this
Now we are going to install the second management server. On the server is Windows Server 2016 Core edition installed. I used the following script to install the management server:
First we need to install the AuthManager for Windows Server 2016 using PowerShell:
1 |
dism /online /enable-feature /featurename:AuthManager |
Next we can run the following command:
1 |
C:\Install\SC 2016 RTM SCOM\.\setup.exe /install /components:OMServer /SqlServerInstance:sql01.ms-opsmgr.eu /DatabaseName:OperationsManager /ActionAccountUser:ms-opsmgr\Srv-OpsmgrAction /ActionAccountPassword:P@ssw0rd /DASAccountUser:ms-opsmgr\Srv-OpsmgrDataAccess /DASAccountPassword:P@ssw0rd /EnableErrorReporting:Never /SendCEIPReports:0 /UseMicrosoftUpdate:0 /AcceptEndUserLicenseAgreement:1 /silent |
When you start the “System Center Operations Manager” Console and you to “Administration” and expand “Device Management”, “Management Servers” you should see two Management servers.
This completes the third part of these series. In the fourth part we are going to install the web-console.
Big thanks’ to Tao Yang and Florent Appointaire for there information on there blogs on how to install System Center Operations Manager 2016 on Windows Server Core 2016