달력

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
2012. 10. 11. 15:17

SCCM 2012의 Network Access Acount 설정 SystemCenter2012. 10. 11. 15:17

System Center 2012 - Configuration Manager의 Network Access Account 설정

SCCM 에이전트가 배포 지점(DP - Distribution Point)에 접근할 때는 기본적으로 에이전트의 컴퓨터 계정을 이용해 접근을 시도합니다. 만약, 컴퓨터 계정에 적절한 권한이 없는 경우 에이전트는 서버에 설정되어 있는 Network Access Account를 사용해 접근을 시도하게 됩니다.

SCCM 2007의 경우에는 아래와 같이 Site Management --> Site Settings --> Client Agents --> Computer Client Agent의 속성에서 설정을 했었습니다.




SCCM 2012에서는 Administraion으로 이동한 후 Site --> Configuraion --> Sites --> 설정하려는 사이트 선택 후 마우스 우클릭 --> Configure Site Components --> Software Distribution을 클릭해 설정합니다.




:
Posted by 커널64
2012. 9. 11. 12:32

System Center 2012 Service Pack 1 베타 출시 SystemCenter2012. 9. 11. 12:32

System Center 2012 Service Pack 1 베타 출시

Windows Server 2012 RTM에 맞춰 System Center 2012에 대한 SP1이 업데이트 되었네요.
아래와 같은 내용들이 추가되거나 향상되었다고 하니 확인해 보아야 하겠습니다.

Virtual Machine Manager
- Improved Support for Network Virtualization
- Extend the VMM console with Add-ins
- Support for Windows Standards-Based Storage Management Service, thin provisioning of logical units and discovery of SAS storage
- Ability to convert VHD to VHDX, use VHDX as base Operating System image

Configuration Manager
- Deployment and management of Windows 8 and Windows Server 2012
- Distribution point for Windows Azure to help reduce infrastructure costs
- Automation of administrative tasks through PowerShell support
- Management of Mac OS X clients and Linux and UNIX servers
- Real-time administrative actions for Endpoint Protection related tasks

Data Protection Manager
- Improved backup performance of Hyper-V over CSV 2.0
- Protection for Hyper-V over remote SMB share
- Protection for Windows Server 2012 de-duplicated volumes
- Uninterrupted protection for VM live migration

App Controller
- Service Provider Foundation API to create and operate Virtual Machines
- Support for Azure VM; migrate VHDs from VMM to Windows Azure, manage from on-premise System Center

Operations Manager
- Support for IIS 8
- Monitoring of WCF, MVC and .NET NT services
- Azure SDK support

Orchestrator
- Support for Integration Packs, including 3rd party
- Manage VMM self-service User Roles
- Manage multiple VMM 'stamps' (scale units), aggregate results from multiple stamps
- Integration with App Controller to consume Hosted clouds

Service Manager
- Apply price sheets to VMM clouds
- Create chargeback reports
- Pivot by cost center, VMM clouds, Pricesheets

Server App-V
- Support for applications that create scheduled tasks during packaging
- Create virtual application packages from applications installed remotely on native server


다운로드는 아래 링크를 참고하세요.

System Center 2012 Service Pack 1 Beta
http://www.microsoft.com/en-us/download/details.aspx?id=34607


:
Posted by 커널64
스크립트로 프로세스의 실행 상태 모니터링
SCOM System Center Operations Manager Script vbs

' 오류 상태 정의: Property[@Name='State'] 같음 BAD
' 정상 상태 정의: Property[@Name='State'] 같음 GOOD
' 중지된 프로세스 목록: $Data/Context/Property[@Name='StoppedProc']$

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

If oArgs.Count = 0 Then
Call oBag.AddValue("State", "GOOD")
Call oAPI.Return(oBag)
WScript.Quit
End If

StoppedProc = ""
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\.\root\cimv2")

For i = 0 to oArgs.Count - 1
Set colProcesses = objWMIService.ExecQuery ("Select * from Win32_Process Where Name = '"& oArgs(i) & "'")
If colProcesses.Count = 0 Then
StoppedProc = StoppedProc & oArgs(i) & ", "
Call oBag.AddValue(oArgs(i), "Not running")
Else Call oBag.AddValue(oArgs(i), "Running("&colProcesses.Count&"ea)")
End If
Set colProcesses = NOTHING
Next

If StoppedProc <> "" Then
Call oBag.AddValue("State", "BAD")
Call oBag.AddValue("Stopped Process(es)",Left(StoppedProc,Len(StoppedProc)-2))
Else 
Call oBag.AddValue("State", "GOOD")
End If

Call oAPI.Return(oBag)


 
:
Posted by 커널64

SCOM 2012 Non-Windows 시스템에 대한 에이전트 수동 설치 방법
System Center 2012 Operations Manager UNIX Linux

Install Agent and Certificate on UNIX and Linux Computers Using the Command Line
http://technet.microsoft.com/en-us/library/hh212686



RHEL 및 SLES
1. 에이전트 설치 파일을 대상 서버에 복사
scx-<version>-<os>-<arch>.rpm

2. 패키지 설치
rpm -i scx-<version>-<os>-<arch>.rpm

3. 설치 확인
rpm -q scx

4. 데몬 실행 상태 확인
service scx-cmid status


Solaris
1. 에이전트 설치 파일을 대상 서버에 복사
scx-<version>-<os>-<arch>.pkg.Z

2. 압축 해제
uncompress scx-<version>-<os>-<arch>.pkg.Z

3. 패키지 설치
pkgadd -d scx-<version>-<os>-<arch>.pkg MSFTscx

4. 설치 확인
pkginfo –l MSFTscx

5. 데몬 실행 상태 확인
svcs scx-cimd


HP-UX
1. 에이전트 설치 파일을 대상 서버에 복사
scx-<version>-<os>-<arch>.gz

2. 압축 해제
gzip –d scx-<version>-<os>-<arch>.gz

3. 패키지 설치
swinstall –s /path/scx-<version>-<os>-<arch> scx

4. 설치 확인
swlist scx

5. 데몬 실행 상태 확인
ps –ef|grep scx
목록에 scxcimserver 가 있는지 확인


AIX
1. 에이전트 설치 파일을 대상 서버에 복사
scx-<version>-<os>-<arch>.gz

2. 압축 해제
gzip –d scx-<version>-<os>-<arch>.gz

3. 패키지 설치
/usr/sbin/installp -a -d scx-<version>-<os>-<arch> scx

4. 설치 확인
swlist scx

5. 데몬 실행 상태 확인
ps –ef|grep scx
목록에 scxcimserver 가 있는지 확인


:
Posted by 커널64
2012. 7. 10. 10:37

SCOM 2012 콘솔 실행 / 초기화 오류 SystemCenter2012. 7. 10. 10:37

System Center 2012 Operations Manager Console 콘솔
SCOM 2012 운영 콘솔을 설치한 후 실행 시키면 다음과 같은 오류가 발생하면서 실행이 되지 않는 증상이 발생합니다. 환경은 Windows Server 2008 R2 SP1에  SCOM 2012 운영 콘솔과 CU1만 설치한 상황입니다.

문제 서명:
  문제 이벤트 이름: CLR20r3
  문제 서명 01: 35IX4XXD43DM0DHGBOU3ZAVYZVCIPHYK
  문제 서명 02: 7.0.5000.0
  문제 서명 03: 4f20e97a
  문제 서명 04: Microsoft.EnterpriseManagement.UI.Foundation
  문제 서명 05: 7.0.5000.0
  문제 서명 06: 4f20e869
  문제 서명 07: 27c
  문제 서명 08: d1
  문제 서명 09: System.IO.FileNotFoundException
  OS 버전: 6.1.7601.2.1.0.272.7
  로캘 ID: 1042
  추가 정보 1: d53f
  추가 정보 2: d53fe3cfe474c7967b3024cf48d49ecb
  추가 정보 3: eca8
  추가 정보 4: eca8b968c644f19e0e6c09a72b88919a

온라인 개인 정보 취급 방침 읽기:
  http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0412

온라인 개인 정보 취급 방침을 사용할 수 없으면 오프라인으로 개인 정보 취급 방침을 읽으십시오.
  C:\Windows\system32\ko-KR\erofflps.txt


이벤트 로그에는 다음 두 개의 이벤트가 기록됩니다.

응용 프로그램: Microsoft.EnterpriseManagement.Monitoring.Console.exe
Framework 버전: v4.0.30319
설명: 처리되지 않은 예외로 인해 프로세스가 종료되었습니다.
예외 정보:System.IO.FileNotFoundException
스택:
   위치: Microsoft.EnterpriseManagement.Mom.Internal.UI.Console.ConsoleJobExceptionHandler.ExecuteJob(System.ComponentModel.IComponent, System.EventHandler`1<Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleJobEventArgs>, System.Object, Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleJobEventArgs)
   위치: Microsoft.EnterpriseManagement.ConsoleFramework.ConsoleJobsService.JobThread(System.Object)
   위치: System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   위치: System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
   위치: System.Threading.ThreadPoolWorkQueue.Dispatch()
   위치: System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()

오류 있는 응용 프로그램 이름: Microsoft.EnterpriseManagement.Monitoring.Console.exe, 버전: 7.0.8560.0, 타임스탬프: 0x4f20e97a
오류 있는 모듈 이름: KERNELBASE.dll, 버전: 6.1.7601.17651, 타임스탬프: 0x4e21213c
예외 코드: 0xe0434352
오류 오프셋: 0x000000000000cacd
오류 있는 프로세스 ID: 0x16b8
오류 있는 응용 프로그램 시작 시간: 0x01cd5e3b0daf1fca
오류 있는 응용 프로그램 경로: C:\Program Files\System Center Operations Manager 2012\Console\Microsoft.EnterpriseManagement.Monitoring.Console.exe
오류 있는 모듈 경로: C:\Windows\system32\KERNELBASE.dll
보고서 ID: 4cd42f06-ca2e-11e1-9835-d4ae526fd260

해결 방법은 Microsoft Report Viewer 2010를 설치하면 됩니다. 원래 SCOM 2012 설치 요구 사항으로 Microsoft Report Viewer 2010이 필요한데 콘솔만 설치하는 경우에는 사전 요구 사항을 체크하지 않고 콘솔이 설치되어 이를 참조하는 dll이 오류를 일으킨 것으로 생각됩니다.

Microsoft Report Viewer 2010 재배포 가능 패키지
http://www.microsoft.com/ko-kr/download/details.aspx?id=6442



:
Posted by 커널64
System Center 2012 Operations Manager UNIX 및 Linux 관리팩

SCOM 2012 용 UNIX / Linux MP의 새로운 버전이 릴리즈 되었네요. 버전은 7.3.2097.0 입니다.
다운 로드 링크는 System Center Monitoring Pack for UNIX and Linux Operating Systems 입니다.

지원되는 운영 체제는 다음과 같습니다.
 - AIX 5.3, 6.1, AIX 7
 - HP-UX 11iv2 PA-RISC, HP-UX 11iv2 IA64, HP-UX 11iv3 PA-RISC, HP-UX 11iv3 IA64
 - Red Hat Enterprise Linux Server 4 (x64), Red Hat Enterprise Linux Server 5 (x64), Red Hat Enterprise Linux Server 6 (x64)
 - Solaris 9, Solaris 10, Solaris 11
 - SUSE Linux Enterprise Server 9, SUSE Linux Enterprise Server 10 SP1, SUSE Linux Enterprise Server 11

 
:
Posted by 커널64
2012. 6. 20. 20:12

System Center 2012 SP1 CTP2 릴리즈 소식 SystemCenter2012. 6. 20. 20:12

Windows Server 2012 RC 출시에 맞춰 System Center 2012 SP1 CTP2가 릴리즈 되었네요.
다운 로드 링크는 http://www.microsoft.com/en-us/download/details.aspx?id=30133 입니다.

각 컴포넌트 별로 향상되거나 추가된 기능은 위 링크에서도 확인할 수 있습니다. 개인적으로 눈에 띄는 점은 SCOM의 APM에서 IIS8을 지원하고 SCCM에서 Windows 8과 Mac OS 및 Linux/Unix를 클라이언트로 지원하는 것과 SCDPM의 중복 제거 볼륨에 대한 백업 지원과 CSV 볼륨에 대한 성능 향상 메시지가 눈에 띄네요.

Virtual Machine Manager
- Improved Support for Network Virtualization
- Extend the VMM console with Add-ins
- Support for Windows Standards-Based Storage Management Service, thin provisioning of logical units and discovery of SAS storage
- Ability to convert VHD to VHDX, use VHDX as base Operating System image

Configuration Manager
- Support for Windows 8
- Support for Mac OS clients
- Support for Linux and Unix servers

Data Protection Manager
- Improved backup performance of Hyper-V over CSV 2.0
- Protection for Hyper-V over remote SMB share
- Protection for Windows Server 2012 de-duplicated volumes
- Uninterrupted protection for VM live migration

App Controller
- Service Provider Foundation API to create and operate Virtual Machines
- Support for Azure VM; migrate VHDs from VMM to Windows Azure, manage from on-premise System Center

Operations Manager
- Support for IIS 8
- Monitoring of WCF, MVC and .NET NT services
- Azure SDK support

Orchestrator
- Support for Integration Packs, including 3rd party
- Manage VMM self-service User Roles
- Manage multiple VMM 'stamps' (scale units), aggregate results from multiple stamps
- Integration with App Controller to consume Hosted clouds

Service Manager
- Apply price sheets to VMM clouds
- Create chargeback reports
- Pivot by cost center, VMM clouds, Pricesheets

Server App-V
- Support for applications that create scheduled tasks during packaging
- Create virtual application packages from applications installed remotely on native server

:
Posted by 커널64

SCOM 2007 R2 CU6 릴리즈 소식입니다. CU5가 릴리즈 되고 난지 거의 10개월만에 업데이트네요.

다운로드 링크입니다.
Cumulative Update 6 for System Center Operations Manager 2007 R2
http://www.microsoft.com/en-us/download/details.aspx?id=29850

Cross Platform 모니터링 지원 대상 추가
- IBM AIX 7.1 (POWER)
- Oracle Solaris 11 (x86 / SPARC)


이 업데이트를 통해 해결되는 이슈입니다.
- RMS promotion fails if NetworkName and PrincipalNames are not in sync for agents.
- UI is limited to only 100 MB for the Memory Usage field in the wizard.
- Additional OIDs in auth certificate are not processed correctly.
- AEM creates duplicate computer objects in OpsMgr based on Agents NetBIOS name.
- Cannot open reporting pane on OpsMgr 2007 R2 remote console.
- Cannot view schedule for scheduled report.
- ManagementServerConfigTool with the option "promoterms" fails because it stops polling the SDK Service.
- OpsMgr reports are failing on Windows 7 with the error: "Cannot initialize report."
- ACS events have "n/a" as their category in the ACS database.
- Watch agentless monitoring listener to detect failure to respond.
- SCOM SDK memory leak on cryptography keys and cryptography contexts.
- After you click Edit Schedule, a message box appears, and you cannot save the change value.
- Audit events can be lost when the AdtServer process crashes.

Cross-Platform 관련
- The installation process for the IBM AIX 6.1 agent incorrectly checks for AIX 5.3 packages.
- After a system restart, the OpsMgr agent for Solaris may start to run before local file systems are mounted.
- On Red Hat Linux version 4 and SUSE Linux version 9, LVM disks are not discovered and cannot be monitored.
- The OpsMgr agent for AIX does not report the arguments for monitored processes.
- When Microsoft security update MS12-006 is installed on an OpsMgr management server, that management server can no longer communicate with the OpsMgr agent on any Linux or UNIX server.
- On HP-UX, OpsMgr cannot discover and monitor a logical volume that is composed of more than 127 physical volumes.

:
Posted by 커널64
Integration Packs for System Center 2012 - Orchestrator

현재 기준으로 제공되는 Integration Pack 들은 다음과 같습니다.
- Active Directory Integration Pack for System Center 2012 - Orchestrator

- HP iLO and OA Integration Pack for System Center 2012 - Orchestrator
- 요구 사항: HP iLO 2, HP iLO 3, HP OA firmware 3.31
 
- HP Operations Manager Integration Pack for System Center 2012 - Orchestrator
- 요구 사항: HP Operations Manager 9.x
 
- HP Service Manager Integration Pack for System Center 2012 - Orchestrator
- 요구 사항: HP Service Manager 7.11 및 9
 
- IBM Tivoli Netcool/OMNIbus Integration Pack for System Center 2012 - Orchestrator
- 요구 사항: IBM Tivoli Netcool/OMNIbus 7.3
 
- VMware vSphere Integration Pack for System Center 2012 - Orchestrator
- 요구 사항: VMware vSphere 4.1 및 5.0
 
- Integration Packs for System Center
- 지원 제품: System Center (SCCM 2007, SCDPM 2010, SCOM 2007 R2, SCSM 2010, SCVMM 2008 R2)
- 지원 제품: System Center 2012 (SCCM 2012, SCDPM 2012, SCOM 2012, SCSM 2012, SCVMM 2012)
 


:
Posted by 커널64
2012. 5. 9. 09:56

SCOM 2012 Sizing Helper Tool SystemCenter2012. 5. 9. 09:56

SCOM 2007 시절에도 사용했었던 Sizing Helper Tool이 System Center 2012 - Operations Manager 용으로 릴리즈 되었네요. SCOM 인프라 디자인 또는 용량 산정 시 유용하게 쓰실 수 있습니다.

아래는 원문 링크와 다운 로드 링크입니다.

원문
http://kevingreeneitblog.blogspot.com/2012/04/scom-2012-opsmgr-sizing-helper-tool.html

다운 로드
http://blogs.technet.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-03-48-96-45/System-Center-2012-Operations-Manager-Sizing-Helper-Tool-v1.xls




:
Posted by 커널64