달력

5

« 2024/5 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

'Cluster Service'에 해당되는 글 1

  1. 2009.01.09 SCOM 2007의 클러스터 상태 - Not Monitored

클러스터로 구성된 각 노드의 Agent Proxy 구성 후
이벤트 로그에 다음 두 개의 이벤트 로그가 지속적으로 발생하며 클러스터의 상태가 '모니터링 하지 않음'으로 유지되는 경우
- 이벤트 원본: HealthService, 이벤트 ID: 1103
- 이벤트 원본: Health Service Modules, 이벤트 ID: 10720

[원인]
MT_Computer 테이블이 정상적으로 채워지지 않아 컴퓨터의 DNS Name으로 스크립트 실행이 실패해 나타난다.

[해결]
1. DNSName이 NULL 값인 컴퓨터 목록 확인
- SSMS > Query Analyzer
Select NetbiosComputerName,DNSName from OperationsManager.dbo.MT_Computer where DNSName is NULL

2. 결과에서 DNSName이 NULL 값인 서버에 대해 다음 쿼리를 이용해 Update 한다.
Update OperationsManager.dbo.MT_Computer set DNSName = '<ClusterDNSName>' where NetbiosComputerName='<ClusterNetBiosName>'

3. Health Service 재시작

:
Posted by 커널64