달력

1

« 2025/1 »

  • 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
1. Copy the ResetSRS.exe file in SupportTools folder of the OM 2007 media to C:.
2. Open a Command Prompt and change your path to C:.
3. Type "ResetSRS.exe MSSQLSERVER" where MSSQLSERVER is your SQL instance name.
4. Then open Reporting Services Configuration Console, select Web Service Identity and click Apply.
5. Reinstall SCOM Reporting.
:
Posted by 커널64
2009. 2. 17. 12:46

/3GB /PAE AWE 정리 Performance2009. 2. 17. 12:46

/3GB

응용 프로그램에서 사용하는 4GB의 가상 메모리는 커널 모드 2GB, 사용자 모드 2GB로 쓰여진다.

(사용자 모드 주소: 0x00000000 ~ 0x7FFFFFFF, 커널 모드 주소: 0x80000000 ~ 0xFFFFFFFF)

 

boot.ini /3GB 파라미터를 사용하면 커널 메모리 1GB, 사용자 모드 3GB로 사용된다.

(사용자 모드 주소: 0x00000000 ~ 0xBFFFFFFF, 커널 모드 주소: 0xC0000000 ~ 0xFFFFFFFF)

 

LARGE_ADDRESS_AWARE 플래그가 설정된 응용 프로그램만 이 늘어난 1GB의 사용자 메모리 공간을 사용할 수 있으며 그렇지 않은 응용 프로그램은 영향 받지 않는다.

LARGE_ADDRESS_AWARE 옵션이 설정되어 있는지 여부는 Visual Studio dumpbin.exe /HEADERS 명령으로 확인 가능하다.

 

1GB로 줄어든 커널 메모리 공간으로 인해 시스템 캐시(System PTE, 페이징 풀, 비 페이징 풀 등)의 공간이 현저하게 줄어들게 된다.

 

응용 프로그램에서 특별히 권고하지 않는 한 일반적으로 /3GB 옵션은 권장되지 않는다.

예를 들어, SQL Server의 경우 /3GB 옵션이 권장되나 파일 서버의 경우에는 사용하지 않는 것을 권장한다.

 

 

/PAE (Physical Address Extension)

32bit 운영체제 메모리 주소의 한계인 4GB(2^32) 이상의 실제 메모리 공간에 접근하기 위해 사용된다.

4GB 이상(36bit: 64GB)의 메모리를 사용하기 위해 운영체제 커널의 메모리 변환 스키마가 변경된다.

Boot.ini /PAE 옵션은 운영체제를 PAE 커널로 변경시킨다.

(단일 프로세서 서버의 경우 ntkrnlpa.exe, 다중 프로세서 서버의 경우 ntkrnlpamp.exe)

 

/PAE 옵션이 응용 프로그램이 사용하는 가상 메모리 공간인 4GB를 늘리는 것은 아니며 응용 프로그램의 가상 메모리 공간은 여전히 4GB로 제한된다.

 

 

AWE (Address Windowing Extension)

/PAE 옵션이 프로세서가 36bit의 메모리 공간을 사용할 수 있게 해주나 응용 프로그램은 여전히 4GB의 가상 메모리 공간을 사용한다.

이 응용 프로그램이 사용하는 4GB의 가상 메모리 공간을 확장하기 위한 API이며 대표적으로 SQL Server가 있다.

 

, AWE를 사용하는 응용 프로그램은 커널 메모리 공간 2GB와 사용자 메모리 공간 2GB 이상을 사용할 수 있게 된다.

:
Posted by 커널64

Monitor -> New -> Scripting -> Timed Script Two State Monitor

Parameters
[Process1.exe] [Process2.exe] ....

State Expression
For Unhealthy Expression Property[@Name='State'] Equals Good
For Healthy Expresion Property[@Name='State'] Equals Bad

Alert Description
$Data/Context/Property[@Name='Message']$

---------------------------------------------------------------------------------------------------------------

ProcessRunCheck.vbs

Dim oAPI, oBag, oArgs, strProcess(), ProcessState()
strMessage = ""

Set oAPI = CreateObject("MOM.ScriptAPI")
Set oBag = oAPI.CreatePropertyBag()
Set oArgs = WScript.Arguments

ParamCount = oArgs.Count
State = 0

If ParamCount < 1 Then
Call oAPI.LogScriptEvent("ProcessRunCheck.vbs", 5009, 0, "Script aborted. Not enough parameters provided.")
WScript.Quit -1
End If

ReDim Preserve strProcess(ParamCount), ProcessState(ParamCount)

i = 0
Do While i <> ParamCount
strProcess(i) = oArgs(i)
i = i + 1
Loop

i = 0
Do While i <> ParamCount
strComputer = "."
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set ProcessState(i) = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = '" & strProcess(i) & "'")

If ProcessState(i).Count => 1 Then
Call oBag.Addvalue(strProcess(i),"Running(" & ProcessState(i).Count & "ea)")
strMessage = strMessage & strProcess(i) & ": " & "Running(" & ProcessState(i).Count & "ea)" & " | "
End If

If ProcessState(i).Count < 1 Then
Call oBag.Addvalue(strProcess(i),"Not running")
strMessage = strMessage & strProcess(i) & ": " & "Not running" & " | "
State = 1
End If

Set objWMIService = nothing
i = i + 1
Loop

If State = 0 Then
Call oBag.AddValue("State","Good")
Else
Call oBag.AddValue("State","Bad")
End If

Call oBag.AddValue("Message",strMessage)
Call oAPI.Return(oBag)

:
Posted by 커널64
2009. 2. 13. 10:38

Recover DPM Server (DPM 서버 복구) SystemCenter2009. 2. 13. 10:38

To restore the DPM and Report databases from local backup media on the DPM server
DpmSync -DpmDbLoc <DPMDB.bak>
DpmSync -DpmReportDbLoc <ReportServer.bak>

After you restore the DPM and Report databases, to synchronize the databases
DpmSync -Sync

After you restore and synchronize the DPM and Report databases and before you restore the replicas, to reallocate disk space for the replicas
DpmSync -ReallocateReplica

:
Posted by 커널64

SCOM 2007 Agent의 메시지 큐 크기 수정

기본값은 15MB인데 Exchange Server 2007과 같은 서버의 경우 너무 작을 수 있다.

과정
1. 레지스트리 편집기 실행
2. 다음 키로 이동
HKLM\SYSTEM\CurrentControlSet\Services\HealthService\Parameters\Management Groups\<ManagementGroupName>
3. MaximumQueueSizeKb 문자열 값 수정
(기본값은 15360으로 15MB -> 30720(10진수)이면 30MB
4. HealthService 재시작

:
Posted by 커널64
2009. 2. 5. 14:51

설치된 핫픽스(Hotfix) 목록 쿼리 - VBS Etc.2009. 2. 5. 14:51

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set QFES = objWMIService.execQuery("Select * from Win32_QuickFixEngineering")

For each QFE in QFES
 Wscript.Echo QFE.HotFixID
Next

:
Posted by 커널64
2009. 2. 5. 10:23

Windows Server 2008 Core 설정 Etc.2009. 2. 5. 10:23

Network Interface 나열

Netsh interface ipv4 show interfaces

(구성할 NIC IDX 번호 기억)

 

NIC IP 설정

Netsh interface ipv4 set address name=[IDX] source=static address=[static ip] mask=[subnet mask] gateway=[default gateway]

 

NIC DNS 서버 설정

Netsh interface ipv4 add dnsserver name=[IDX] address=[dnsip] index=1

원격 데스크탑 설정

Cscript c:\windows\system32\scregedit.wsf /ar 0

(0은 활성, 1은 비활성)

 

원격 데스크탑 설정 상태 보기

Cscript c:\windows\system32\scregedit.wsf /ar /v

(0은 활성, 1은 비활성)

 

원격 데스크탑의 보안 강화 레벨 비활성

Cscript c:\windows\system32\scregedit.wsf /cs 0

 

방화벽의 원격 데스크탑 허용

Netsh advfirewall firewall set rule group=”Remote Desktop” new enable=yes

 

방화벽의 파일 및 프린터 공유 허용

Netsh advfirewall firewall set rule group=”File and Printer sharing” new enable=yes

Administrator 암호 변경

Net user administrator *

 

서버 이름 설정

Netdom renamecomputer [currentcomputername] /NewName:[newcomputername]

 

도메인 참가

Netdom join [computername] /domain:[DomainName] /userd:[UserName] /password:*

 

도메인 탈퇴

Netdom remove

시간 설정

Control timedate.cpl

 

자동 업데이트 설정

Cscript c:\windows\system32\scregedit.wsf /au 4

 

자동 업데이트 끄기

Cscript c:\windows\system32\scregedit.wsf /au 1

 

자동 업데이트 설정 보기

Cscript c:\windows\system32\scregedit.wsf /au /v

 

서버 활성화 (정품 인증)

Slmgr.vbs –ipk [Product Key]  <- 제품키 입력

Slmgr.vbs –ato  <- Activation

Slmgr.vbs –dlv  <- 라이선스 상태 확인

 

페이징 파일 설정

Wmic pagefileset where name=[path/filename] set Initialsize=[initialsize],MaximumSize=[maxsize]

Active Directory Promotion

다음 내용을 TXT 파일로 저장 후 Dcpromo /unattend:[TXT 파일]

(DNS Server Role 설치, Functional Level : Windows Server 2008)

 

[DCInstall]

ReplicaOrNewDomain=Domain

NewDomain=Forest

NewDomainDNSName=DOMAIN.COM

ForestLevel=3

DomainNetbiosName=DOMAIN

DomainLevel=3

InstallDNS=Yes

ConfirmGc=Yes

CreateDNSDelegation=No

DatabasePath="C:\Windows\NTDS"

LogPath="C:\Windows\NTDS"

SYSVOLPath="C:\Windows\SYSVOL"

SafeModeAdminPassword=P@ssw0rd

 

DNS Reverse Lookup Zone 구성 (ex: 192.168.1.0)

dnscmd localhost /ZoneAdd 1.168.192.in-addr.arpa. /DSPrimary

net stop DNS

net start DNS

역할 설치

http://technet.microsoft.com/en-us/library/cc753802.aspx

 

Hyper-V Role 설치

Start /w ocsetup Microsoft-Hyper-V

 

기능 설치

start /w ocsetup <feature name>(대소문자 구분)

 

기능: Feature Name

Failover Cluster: FailoverCluster-Core

Network Load Balancing: NetworkLoadBalancingHeadlessServer

Subsystem for UNIX-bases applications: SUA

Multipath IO: Microsoft-Windows-MultipathIO

Removable Storage Management: Microsoft-Windows-RemovableStorageManagementCore

Bitlocker Drive Encryption: BitLocker

Backup: WindowsServerBackup

Simple Network Management Protocol (SNMP): SNMP-SC

WINS: WINS-SC

 

:
Posted by 커널64

Processor

1.      32 논리 프로세서 코어 지원

2.      SLAT(Second Level Address Translation)

-       가상 주소와 실제 주소 변환에 대한 overhead 감소

-       Hypervisor CPU Time과 각 가상 머신의 메모리 사용량 절약

3.      CPU Core Parking

-       유휴 상태의 CPU Sleep 상태로 전환해 전원 절약

Networking

1.      Jumbo frame

-       물리적인 NIC이 지원하는 경우 9014byte 크기의 frame 지원

-       전체적인 네트워크 성능 향상, CPU overhead 감소

2.      TCP Chimney

-       Network processing 작업을 NIC(H/W)에서 하도록 해 성능 향상

3.      VMQ(Virtual Machine Queue)

-       물리적인 컴퓨터의 NIC DMA를 이용해 패킷을 VM의 메모리로 직접 전달하도록 해 I/O 성능 향상

 

CSV(Cluster Shared Volumes)

-       CSV는 장애 조치 클러스터링 기능의 일부로 다수의 Windows 서버가 SAN 저장소를 하나의 일관된 이름 공간으로 접근할 수 있게 해준다. 클러스터 구성에서 저장소 설정을 간편하게 만들어주며 라이브 마이그레이션의 속도를 향상시킨다.

 

 

Live Migration

-       Windows Server 2008 R2에 추가된 기능 중 가장 핵심적인 기능

 

요구 사항

ž   지원 운영체제

-       Windows Server 2008 R2 x64 Enterprise Edition

-       Windows Server 2008 R2 x64 Datacenter Edition

-       Hyper-V Server 2008 R2

ž   모든 물리적인 호스트에 Failover Clustering이 구성되어 있어야 한다.

ž   Failover Clustering은 클러스터당 최대 16 노드까지 지원한다.
(
두 클러스터 노드에서 한번에 한 개의 라이브 마이그레이션 세션만 가능하다.)

ž   라이브 마이그레이션을 위한 전용 네트웍이 구성되어 있어야 한다.
(
많은 양의 메모리 페이지를 전송하기 위해 1 Gigabit의 전용 이더넷이 권장된다.)

ž   물리적인 호스트는 같은 제조사의 프로세서를 사용해야 한다. (Intel / AMD)

ž   물리적인 호스트는 동일한 서브넷으로 구성되어야 한다.

ž   물리적인 호스트는 공유 저장소에 접근할 수 있어야 한다.
(
공유 저장소는 CSV가 권장된다.)

 

Live Migration 과정

     Live Migration Setup

ž   원본 호스트와 대상 호스트 간에 데이터 이동을 위한 TCP 세션 생성

ž   대상 호스트에 빈 VM이 생성되고 메모리 할당

     메모리 페이지 전송

ž   대상 호스트에 할당된 메모리로 원본 VM Working Set 전송 시작
(
메모리의 페이지 크기는 4 Kbyte)

ž   전송 중 원본 VM에서 변경되는 메모리 페이지에 대한 추적

ž   메모리 추적으로 변경된 메모리에 대해 수 차례 전송 수행

     메모리 페이지 전송 완료

ž   대상 호스트로 남아 있는 변경된 메모리 페이지를 복사하고 VM의 레지스터와 디바이스의 상태 전송
(
이 과정에서 원본과 대상 호스트의 네트웍 속도가 매우 중요한 요인이 된다. 변경된 페이지와 VM Working Set을 전송하는 시간에 따라 라이브 마이그레이션의 완료 시간이 결정된다.)

ž   대상 호스트로 VM Working Set 전송이 완벽하게 완료되면, VM Working Set과 대상 호스트의 그것과 완전히 일치하면 다음 과정 진행

ž   라이브 마이그레이션은 이 과정 이전 어디서든 취소가 가능하다.

     저장소 핸들 이동

ž   VM에 대한 저장소(VHD 파일 또는 Pass-through 디스크)의 조작(Control) 권한이 대상 호스트로 이동

     대상 호스트에서 VM Online

:
Posted by 커널64

사용자가 자동 로그인을 시도하면 다음과 같은 순서로 DNS를 쿼리한다.

1. _sipinternaltls._tcp.<domain> - 내부 TLS 연결(포트 : 5061)
2. _sipinternal._tcp.<domain> - 내부 TCP 연결(포트 : 5060)
3. _sip._tls.<domain> - 외부 TLS 연결(포트 : 443)
4. _sip._tcp.<domain> - 외부 TCP 연결(포트 : 443)



추가 기능에 대한 필요 서버

제공할 기능

추가할 서버 역할

사용 클라이언트

내부 사용자를 위한 IM과 상태정보 제공

추가 서버 없음

Communicator 2005/2007

On-premise Web Conferencing

Standard Edition:
추가 서버 없음

Enterprise Edition:
Web Conferencing Server
Web Components Server

Live Meeting 2007 client

Address Book Server

Standard Edition:
추가 서버 없음

Enterprise Edition:
Web Components Server

Archiving and Call Detail Records

Archiving and CDR Server

외부 사용자 접근

Access Edge Server
HTTP reverse proxy

Communicator 2005/2007

Federation

Public IM Connectivity(PIC)

외부사용자와의 Web conferencing

Web Conferencing Edge Server
HTTP reverse proxy

Live Meeting 2007 client

외부사용자와의 Audio/Video Conferencing

A/V Conferencing Edge Server

Live Meeting 2007 client

웹 브라우저 기반 클라이언트에 대한 IM과 상태정보 제공

Communicator Web Access Server

Communicator Web Access

Enterprise Voice

Mediation Server and basic media gateway
OR
basic-hybrid media gateway
(Mediation Server + basic media gateway)
OR
advanced media gateway
(Mediation server logic + gateway)

Communicator 2007
OR
Office Communicator 2007 Phone

 

Edge 서버

Server

Required to Support

Corresponding Internal Server Required

Protocol

Access Edge Server

Public IM, Federation, 내부 사용자의 원격 접근 지원, 내부에서 외부로 Conference, Voice 기능을 위해 연결 지원

Office Communications Server 2007 server or pool and, optionally, a Director

Session Initiation Protocol (SIP)

Web Conferencing Edge Server

External Web conferencing

Web Conferencing Server

Persistent Shared Object Model (PSOM)

A/V Edge Server

A/V conferences with external users Point-to-point A/V calls with external users

A/V Conferencing Server

RTP/RTCP, Simple Traversal of UDP through NAT (STUN)/

Reverse Proxy

Group Expansion(배포그룹 확장) 주소록 파일 다운로드에 필요. 컨퍼런싱을 위한 회의 자료(ppt) 접근하기 위해 필요

Web server (IIS)

HTTP(s)




인증서 요구 사항

Topology

Server Role

Recommended CA

Subject Name/
Common Name

SAN

Comments

Standard Edition server

All server roles (which are collocated)

Enterprise CA.

FQDN of the Standard Edition Server

If you have multiple SIP domains and have enabled automatic client configuration, the certificate wizard detects and adds each supported SIP domain FQDNs. (The wizard detects any SIP domains you specified during setup and automatically adds them to the SAN)

Additionally, you must use the IIS administrative  snap-in to assign  the certificate used by the Web Component Server

Enterprise pool: consolidated

All server roles. Certificate configured on each Enterprise Edition Server

Enterprise  CA.

FQDN of the pool

For the Web Components Server role, the certificate must have the URL of the internal Web farm in the SN or SAN.

If you have multiple SIP domains and have enabled automatic client configuration, the wizard detects the SIP domains, adds them to the SAN, and then adds each supported SIP domain FQDN.

(The wizard detects any SIP domains you specified during setup and automatically adds them to the SAN)

For the Web Components Server role, the certificate must have the URL of the internal Web farm in the SAN (if the FQDN is different from the pool FQDN).

Certificate must be installed on each server in the pool.

Additionally, you must use the IIS administrative snap-in to assign the certificate used by the Web Component Server.

Enterprise pool: expanded

Front End

Enterprise CA

FQDN of the pool

If you have multiple SIP domains and have enabled automatic client configuration, add each supported SIP domain FQDN.

(The wizard detects any SIP domains you specified during setup and automatically adds them to the SAN)

Certificate must be installed on each server in the pool

Web Conferencing

Enterprise CA

FQDN of the pool

 

Certificate must be installed on each server in the pool

A/V Conferencing

Enterprise CA

FQDN of the pool

 

Certificate must be installed on each server in the pool

Web Components

Enterprise CA

FQDN of the VIP (virtual IP) of the load balancer used by the Web Components Server

SAN must contain the URL of the internal Web farm in the SAN (if the FQDN is different from the pool FQDN)

A certificate has to be configured in IIS on the all servers that are running the Web Component Services

Director,
Standard Edition

Director

Enterprise CA

FQDN of Standard Edition Server

If you have multiple SIP domains and have enabled automatic client configuration and all clients use this Director for logon, add each supported SIP domain FQDN.

(The wizard detects any SIP domains you specified during setup and automatically adds them to the SAN)

 

Director,
Enterprise pool

Director

Enterprise CA

FQDN of the pool

If you have multiple SIP domains and have enabled automatic client configuration and all clients use this Director for logon, add each supported SIP domain FQDN.

.

Array of Standard Edition Directors

Director

Enterprise CA.

FQDN of the Director Server

FQDN of Director Server and the FQDN of the virtual IP (VIP) used by the array

If you have multiple SIP domains and have enabled automatic client configuration and all clients use this Director for logon, add each supported SIP domain FQDNs.

FQDN of the server is in the SUBJECT field

FQDN of the Director VIP and the FQDN of the server must be in the SUBJECT_ALT_NAME as DNS values



사용 포트

Component (Server role or client)

Port

Protocol

Notes

Front End Servers

5060/5061

TCP

MTLS

Used by Standard Edition Servers and Enterprise pools for all internal SIP communications between servers and between servers and Office Communicator

Front End Servers

443

HTTPS

Communication from front-end servers to the Web farm FQDNs (the URLs used by Web Components)

Front End Servers

444

HTTPS

Communication between the focus (Office Communications Server component that manages conference state) and the conferencing servers

Front End Servers

135

DCOM and RPC

Used when a load balancer is deployed, port 135 is used by the Front End Servers for WMI operations and moving users (a remote DCOM-based database operation)

Web Components 

443

TCP

HTTPS traffic to the pool URLs

Web Conferencing Server

443

TLS

HTTPS communications to Web Components Servers

Web Conferencing Server

444

TLS

HTTPS between the Web Conferencing Server and the Front End Server

Web Conferencing Server

8057

TLS

Used to listen to direct PSOM connections from Live Meeting client

A/V Conferencing Server

5063

TCP

Used for incoming SIP listening requests

A/V Conferencing Server

49152 – 65535 media port range

UDP

Port range used for media requests sent.

Reverse Proxy

443

TCP

Used for SIP/TLS communications from external users on both the internal and external firewalls for external user access

Access Edge Server

5061

TCP

Used for SIP/MTLS communication for remote user access or federation.

Access Edge Server

443

TCP

Used for SIP/TLS communication for remote user access

Web Conferencing Edge Server

8057

TCP

Used to listen for PSOM/MTLS communications from the Web Conferencing Server  on the internal interface of the Web Conferencing Edge Server

Web Conferencing Edge Server

443

TCP

Used for inbound communications for access of remote, anonymous and federated users to access internal Web conferences

A/V Edge Server

443

TCP

Used for STUN/TCP inbound and outbound media communications to allow external users to access media and A/V sessions

A/V Edge Server

5062

TCP

Used for SIP/MTLS authentication of A/V users. Communications flow outbound through the internal firewall.

A/V Edge Server

3478

UDP

Used for STUN/UDP inbound and outbound media communications

A/V Edge Server

50,000-59,999

RTP/TCP

Used for inbound and outbound media transfer through the external firewall.

Office Communicator

5060

TCP (SIP)

Used by Office Communicator for SIP communications internally

Office Communicator

5061

TCP (SIP)

Used by Office Communicator for SIP communications internally and for SIP/MTLS authentication of A/V users. Communications flow outbound through the internal firewall

Office Communicator

443

TCP (HTTP)

Used by Communicator clients connecting from outside the intranet for SIP communications

Office Communicator

1024-65535

UDP/TCP

Port range used for inbound and outbound media transfer through the external firewall.

Office Communicator

6891-6901

TCP

Port ranged used by Office Communicator for file transfer.

Live Meeting 2007 client

443

TCP

Used by Live Meeting 2007 clients connecting from outside the intranet for:

SIP traffic sent to the Access Edge Server

PSOM traffic sent to the Web Conferencing Edge Server

Live Meeting 2007 client

8057

TCP

Used for outgoing PSOM traffic sent to the Web Conferencing Server

Live Meeting 2007 client

5061

TCP

Used for SIP/TLS communication between Live Meeting and the Front End Servers or the Access Edge Server and for SIP/MTLS authentication of A/V users. Communications flow outbound through the internal firewall

Live Meeting 2007 client

1024-65535

UDP/TCP

Port range used for inbound and outbound media transfer through the external firewall

Live Meeting 2007 client

6891-6901

TCP

Port ranged used by Live Meeting for file transfer

:
Posted by 커널64
2009. 1. 24. 10:17

ManagementServerConfigTool의 용도 SystemCenter2009. 1. 24. 10:17

1. Creating Clustered RMS

ž   InstallCluster 명령은 클러스터된 RMS를 생성할 때 사용한다.

ž   DB를 제외한 모든 다른 작업보다 우선적으로 실행되어야 한다. (ex: Agent 배포 등)

ž   모든 클러스터 구성원 노드인 관리 서버에 동일하게 적용된다.

ž   RMS는 관리 그룹의 첫 번째 관리 서버이기 때문에 만일 추가 관리 서버와 Agent가 배포되어 있는 상황에서 작업을 진행할 경우 모든 관리 그룹에 혼란을 야기시킬 수 있다.

ž   이 명령은 데이터베이스의 클래스 구조와 모든 클러스터 노드가 RMS로 동작하도록 하기 위해 로컬 컴퓨터의 서비스, 레지스트리, 파일 구조를 변경한다.

ž   각각의 노드에 암호화 키를 복원하고 다음 명령을 실행한다.
ManagementServerConfigTool InstallCluster /vs:<VirtualClusterName> /Disk:<DiskLetter>

 

2. Adding Clustered RMS node

ž   AddVirtualServer 명령은 클러스터된 RMS에 노드를 추가할 때 사용한다.

ž   노드로 추가될 관리 서버에 암호화 키를 복원하고 다음과 같이 명령을 실행한다.
ManagementServerConfigTool AddRMSNode /vs:<VirtualClusterName> /Disk:<DiskLetter>

 

3. Promotion of a new MS to the RMS role

ž   PromoteRMS 명령은 관리 서버를 RMS role로 승격할 때 사용한다.

ž   RMS가 될 관리 서버에 암호화 키를 복원하고 ManagementServerConfigTool PromoteRMS 명령을 실행한다.

ž   Promotion 시 기존 RMS와의 연결(통신)이 가능하다면 기존 RMS는 자동으로 관리 서버로 demotion 된다.

ž   어떠한 이유로 인해 기존 RMS와 연결이 불가능한 경우 RMS에서 UpdateDemotedRMS 명령을 통해 수동으로 일반 관리 서버로 demotion 해야 한다.

ž   만약 PromoteRMS 후에 관리/수집 서버가 RMS와 통신하지 못하는 경우 각각의 관리/수집 서버에서 UpdateSecondaryMS 명령을 실행해 새로운 RMS의 위치를 찾을 수 있도록 해야 한다.

  

Windows Server 2003 클러스터에 SCOM RMS 설치
Windows Server 2008 장애조치 클러스터에 SCOM RMS 설치

:
Posted by 커널64