2009. 1. 9. 17:03
SCOM 2007의 클러스터 상태 - Not Monitored SystemCenter2009. 1. 9. 17:03
클러스터로 구성된 각 노드의 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 재시작