fix error while accessing scom application advisor & diagnostics … · shashi bhushan if the...

7
SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics- console/ Fix – Error while accessing SCOM Application Advisor & Diagnostics Console Recently one of our clients enabled .NET application monitoring through their SCOM environment and configured it as per their requirement so they can get alerts for application down, application slowness, etc. After configuration, when they did the testing, they found that they are getting alerts for the application as expected however the Application Advisor/Diagnostics links provided under alert description to investigate the alerts were not working. Below is the error message they were getting while accessing both the Application Advisor and Application Diagnostics console.

Upload: others

Post on 31-Jul-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/

Fix – Error while accessing SCOM Application Advisor & Diagnostics Console

Recently one of our clients enabled .NET application monitoring through their SCOM environment and

configured it as per their requirement so they can get alerts for application down, application slowness,

etc.

After configuration, when they did the testing, they found that they are getting alerts for the application

as expected however the Application Advisor/Diagnostics links provided under alert description to

investigate the alerts were not working.

Below is the error message they were getting while accessing both the Application Advisor and

Application Diagnostics console.

Page 2: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/ After clicking Retry button, below was the error message:

Page 3: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/ When I checked the Application Event on SCOM Web Console server, I found Event ID: 1309 with Event

Description Cannot open database "OperationsManagerDW" requested by the login. The login failed.

Page 4: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/ While checking other Application Event logs, I found exception for OperationsManager DB as well.

Cannot open database "OperationsManager" requested by the login. The login failed.

Page 5: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/ If the web console does not have sufficient access to the operational database or the data warehouse

database, we get this exception while accessing Application Advisor and Diagnostics console.

To resolve this issue, you can have your database administrator run the following SQL Server statement

on both the operational database and data warehouse database:

EXEC [apm].GrantRWPermissionsToComputer N'[LOGIN]'

The local and remote parameters are as follows:

• For local installation (Single Server Deployment), the LOGIN is: IIS

APPPOOL\OperationsManagerAppMonitoring

• For remote installation (Distributed Environment), the LOGIN is: Domain\MachineName$

Since in our scenario, SCOM DB and DW were installed on a separate machine, we would be choosing

second option and will run below query:

EXEC [apm].GrantRWPermissionsToComputer N' Domain\MachineName$'

MachineName = Web Console Server hostname.

Run the same query for OperationsManagerDW database as well.

Page 6: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/

Once the query execution done on the both the databases, it’s time to access the Application Advisor

and Diagnostics console.

Application Advisor started working as expected.

Page 7: Fix Error while accessing SCOM Application Advisor & Diagnostics … · SHASHI BHUSHAN   If the web console does

SHASHI BHUSHAN WWW.SYSTEMCENTERMVP.COM http://systemcentermvp.com/2017/09/12/fix-error-accessing-scom-application-advisor-diagnostics-console/ Application Diagnostics also started working perfectly fine.

That’s it.

Hope this helps.