Server is comings out of maintenance mode

Chetan rms 21 Reputation points
2020-08-28T15:51:46.86+00:00

hi
Server is coming out of maintenance before the actual end and going back to maintenance in very short time.
Could some One assist how to stop this

Operations Manager
Operations Manager
A family of System Center products that provide infrastructure monitoring, help ensure the predictable performance and availability of vital applications, and offer comprehensive monitoring for datacenters and cloud, both private and public.
1,441 questions
{count} votes

2 answers

Sort by: Most helpful
  1. SChalakov 10,371 Reputation points MVP
    2020-08-31T08:00:13.197+00:00

    Hi,
    can you please add some more details to your SCOM environment - SCOM Version, OS Versio, Update Rollup Level.
    Do you see Events, which indicate that the Server is not in MM anymore? How do you tell exactly that it exists and enters MM again?

    Thanks for clarifying this.
    Regards,

    0 comments No comments

  2. Fursel 341 Reputation points
    2020-09-03T07:12:37.89+00:00

    Check maybe history which user is actually changing the setup in OperationManagerDW, maybe it will give you some point

    USE OperationsManagerDW
    SELECT ManagedEntity.DisplayName, MaintenanceModeHistory.*
    FROM ManagedEntity WITH (NOLOCK)
    INNER JOIN
    MaintenanceMode ON ManagedEntity.ManagedEntityRowId = MaintenanceMode.ManagedEntityRowId
    INNER JOIN
    MaintenanceModeHistory ON MaintenanceMode.MaintenanceModeRowId = MaintenanceModeHistory.MaintenanceModeRowId
    where displayname like '<YourServerName>'
    order by DWCreatedDateTime desc

    0 comments No comments