달력

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
Hyper-V 호스트 및 가상 머신의 ICS 버전 정보 확인

Hyper-V 호스트 서버의 ICS 버전 정보
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\GuestInstaller\Version
REG_SZ(문자열 값): Microsoft-Hyper-V-Guest-Installer

가상 머신의 ICS 버전 정보
HKLM\SOFTWARE\Microsoft\Virtual Machine\Auto
REG_SZ(문자열 값): IntegrationServicesVersion


 
:
Posted by 커널64
VDI 시 Windows 7 기본 이미지에 대한 권장 구성 작업 CLI Command Line
Citrix Windows 7 Optimization Guide for Desktop Virtualization 문서에 기반함
배치 파일로 만들어 쓸 수 있도록 정리

@Echo off
Echo Citrix Windows 7 Optimization Guide for Desktop Virtualization 문서에 기반하여,
Echo 데스크톱 가상화(VDI)를 위한 Windows 7 가상 머신에 대한 권장 구성들을 적용합니다.
Echo ================================================================================ 
Pause

Echo Disable 'Background Intelligent Transfer Service'...
sc config BITS start= disabled
Echo Disable 'Function Discovery Resource Publication'...
sc config FDResPub start= disabled
Echo Disable 'HomeGroup Listener'...
sc config HomeGroupListener start= disabled
Echo Disable 'HomeGroup Provider'...
sc config HomeGroupProvider start= disabled
Echo Disable 'Offline Files'...
sc config CscService start= disabled
Echo Disable 'Security Center'...
sc config wscsvc start= disabled
Echo Disable 'Superfetch'...
sc config SysMain start= disabled
Echo Disable 'Windows Defender'...
sc config WinDefend start= disabled
Echo Disable 'Windows Media Player Network Sharing Service'...
sc config WMPNetworkSvc start= disabled
Echo Disable 'Windows Media Player Network Sharing Service'...
sc config WMPNetworkSvc start= disabled

Echo Disable 'Last Access Timestamp'...
reg add "HKLM\SYSTEM\CurrentControlSet\Control\FileSystem" /v NtfsDisableLastAccessUpdate /t REG_DWORD /d 1 /f
Echo Disable 'Large Send Offload'...
reg add "HKLM\SYSTEM\CurrentControlSet\Services\BNNS\Parameters" /v EnableOffload /t REG_DWORD /d 0 /f
Echo Disable 'TCP/IP Offload'...
reg add "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters" /v DisableTaskOffload /t REG_DWORD /d 1 /f
Echo Increase 'Service Startup Timeout'...
reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v ServicesPipeTimeout /t REG_DWORD /d 180000 /f
Echo Hide 'Hard Error Messages'...
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Windows" /v ErrorMode /t REG_DWORD /d 2 /f
Echo Disable 'CIFS Change Notifications'...
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v NoRemoteRecursiveEvents /t REG_DWORD /d 1 /f
Echo 'Disable Logon Screensaver'...
reg add "HKU\.DEFAULT\Control Panel\Desktop" /v ScreenSaveActive /t REG_SZ /d 0 /f
Echo Disable 'Error Reporting'...
reg add "HKLM\SOFTWARE\Microsoft\PCHealth\ErrorReporting" /v DoReport /t REG_DWORD /d 0 /f
Echo Disable 'System Restore'...
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v DisableConfig /t REG_DWORD /d 1 /f

Echo Disable 'Boot Animation'...
bcdedit /set bootux disabled
Echo ================================================================================
Echo 데스크톱 가상화를 위한 Windows 7 가상 머신에 대한 구성 작업이 완료되었습니다.
:
Posted by 커널64
WMI를 이용한 Hyper-V 가상 머신 제어 셈플
WMI VBS VBScript Hyper-V Virtual Machine Control root\virtualization

 
:
Posted by 커널64

Windows Server 8에 포함될 Hyper-V 3.0에 관련된 소식
차기 버전에서는 비로소 VMware의 vSphere와 견줄 수 있을 것 같다.
눈에 띄는 부분을 요약하면 다음과 같다. (Developer Preview 기준)

- 호스트 당 160 논리 프로세서, 2TB 메모리 지원
- 가상 머신 당 32개의 vCPU 및 512GB 메모리 지원
- 동시에 다수의 라이브 마이그레이션 지원
- 스토리지 라이브 마이그레이션 지원
- 공유 스토리지 없이 라이브 마이그레이션 및 스토리지 라이브 마이그레이션 지원
- 가상 디스크 포맷이 변경(VHDX)되며 최대 용량 16TB로 증가, 성능 향상
- 가상 HBA 지원 및 가상 머신의 SAN 부팅 지원
- Hyper-V 복제 기능 제공(VMware의 FT와 같은)
- 네트워크 대역폭 관리 기능 추가
- 가상 스위치의 업데이트로 VMware의 그것과 동등해짐
- 운영체제 자체에 NIC Teaming 기능 포함
- 스토리지 중복제거 및 데이터 압축 지원
- CSV 2.0으로 업데이트되며 자체적인 복제 기능 지원
- XenDesktop의 Golden Image 기능과 같은 기능 지원
- Server Core 모드와 GUI 모드를 필요에 따라 전환 가능

와우~! 기대된다. 하지만, 출시 시점은 내년 말이나 되야 한다는 거...;;;

스냅샷 쪼금 ^^

 
 

 
 

(호스트 서버의 CPU가 16개인 관계로 32개는 테스트 못함;;;)

http://www.microsoft.com/en-us/server-cloud/windows-server/v8.aspx

:
Posted by 커널64
2011. 9. 7. 09:19

Citrix 네트워크 사용 포트 정보 Virtualization2011. 9. 7. 09:19

Citrix 네트워크 사용 포트 정보
Citrix Network Port XenDesktop XenApp XenCenter XenServer Access Gateway ICA HDX

VDA는 TCP 1494와 2598 필요하다.

:
Posted by 커널64

원격 데스크톱 웹 액세스의 SSO 설정
RemoteApp VDI Remote Desktop Web Access

참고 링크
How to enable Single Sign-On for my Terminal Server connections
http://blogs.msdn.com/b/rds/archive/2007/04/19/how-to-enable-single-sign-on-for-my-terminal-server-connections.aspx

Introducing Web Single Sign-On for RemoteApp and Desktop Connections
http://blogs.msdn.com/b/rds/archive/2009/08/11/introducing-web-single-sign-on-for-remoteapp-and-desktop-connections.aspx

위 설정을 다 해도 아래와 같이 RemoteApp 실행 시 경고 창이 뜬다.



이 경고 창을 없애는 방법은 두 가지가 있다.

첫 번째 방법은 로그온 시 보안 선택 옵션에서 '개인 컴퓨터' 선택 후 '...다시 묻지 않음' 체크
  

두 번째 방법은 그룹 정책에서 신뢰할 수 있는 인증서 지문을 입력한다.
컴퓨터/사용자 구성 > 정책 > 관리 템플릿 > Windows 구성 요소 > 터미널 서비스 > 원격 데스크톱 연결 클라이언트
'SHA1 신뢰할 수 있는 인증서 지문의 쉼표로 구분된 목록'에 원격 데스크톱 세션 호스트 서버의 인증서 지문을 입력한다.

 

:
Posted by 커널64

Linux Integration Services for Hyper-V
Hyper-V ICS Integration Services

v3 지원 운영체제
- Red Hat Enterprise Linux 6.0 and 6.1 x86 and x64 (Up to 4 vCPU)
- CentOS 6.0 x86 and x64 (Up to 4 vCPU)

v3 다운로드 링크
http://www.microsoft.com/downloads/ko-kr/details.aspx?FamilyID=216de3c4-f598-4dff-8a4e-257d4b7a1c12


v2 지원 운영체제
- SUSE Linux Enterprise Server 10 SP3 x86 and x64 (up to 4 vCPU)
- SUSE Linux Enterprise Server 11 x86 and x64 (up to 4 vCPU)
- Red Hat Enterprise Linux 5.2, 5.3, 5.4, and 5.5 x86 and x64 (Up to 4 vCPU)

v2 다운로드 링크
http://www.microsoft.com/download/en/details.aspx?id=24247

마우스 드라이버
http://www.xen.org/products/satori.html

:
Posted by 커널64
2011. 7. 12. 15:23

VMMSSP 2.0 SP1 릴리즈 소식 Virtualization2011. 7. 12. 15:23

VMMSSP (Virtual Machine Manager Self Service Portal) 2.0 SP1이 릴리즈되었다.

다운로드 링크
http://www.microsoft.com/download/en/details.aspx?id=26701

퀵! 스타트 가이드~
http://technet.microsoft.com/en-us/library/gg588340.aspx

:
Posted by 커널64
2011. 4. 1. 23:00

VDI 환경을 위한 SCVMM 성능 튜닝 Virtualization2011. 4. 1. 23:00

VDI 환경을 위한 SCVMM 성능 튜닝

VDI 환경의 특성 상 동시에 VM들이 켜지거나(출근 시간대) 동시에 VM들이 꺼지는(퇴근 시간대) 상황이 발생하는데 이 경우 VMM 서버에 많은 부하가 발생할 수 있다. 아래의 튜닝 방법은 약 1,000대의 VM을 기준으로 하므로, 이 이상의 경우에는 다수의 SCVMM 서버를 두어야 할 필요가 있다.

1,000대의 VM을 관리하기 위한 SCVMM 서버의 하드웨어 구성은 다음과 같다.
- 4Core 이상의 CPU와 8GB의 메모리
- SQL Server 2008 R2 Enterprise
- Fibre 방식 디스크로 데이터베이스와 로그 분리
- VM으로 구성할 경우 Pass-through 디스크로 구성

[새로 고침 주기 변경]
레지스트리 키 위치 - HKLM\SOFTWARE\Microsoft\Microsoft System Center Virtual Machine Manager Server\Settings
값형태 / 입력단위 - REG_DWORD / 초

 값 이름  설명  기본 값  최소 값  최대 값  권장 값
VMUpdateInterval VM 목록 새로 고침 30분 0 24시간 120분
HostUpdateInterval 호스트 및 사용자 새로 고침 30분 0 24시간 120분
VMPropertiesUpdateInterval VM 속성 및 상태 새로 고침 2분 0 24시간 30분
VHDMountTimeoutSeconds 동일 디스크를 기반으로 다수의 VM이 동시 생성되는 경우의 시간 제한 10분 10분 1시간 30분 또는 1시간

[오래된 작업 데이터 삭제]
VDI 환경의 경우 많은 양의 작업이 발생하게 되므로 데이터베이스에 많은 양의 작업 데이터가 쌓이게 될 수 있다.
레지스트리 키 위치 - HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft System Center Virtual Machine Manager Server\Settings\Sql\TaskGC
값이름: TaskGC, 기본값: 90일, 권장값: 7일

[WCF 시간 제한]
SCVMM은 서버와 클라이언트의 Powershell 레이어간 통신에 WCF를 사용한다. VDI 환경에서는 많은 양의 요청이 동시에 발생할 경우 지연이나 부하가 발생할 수 있다.
레지스트리 키 위치 - HKLM\Software\Microsoft\Microsoft System Center Virtual Machine Manager Server\Settings\IndigoSendTimeout
값이름: IndigoSendTimeout, 기본값: 120초, 권장값: 300초

[Garbage Collector(GC) 최적화]
기본값인 워크스테이션 GC 대신 VMM 서버의 GC를 설정하면 다수의 VMM 작업에 대한 CPU 오버헤드가 크게 줄어든다.
%Program Files%\Microsoft System Center Virtual Machine Manager 2008 R2\Bin 폴더에 vmmservice.exe.config 파일을 생성한 후 아래의 내용을 붙혀 넣는다.
<configuration>
   <runtime>
      <gcServer enabled="true"/>
   </runtime>
</configuration>


위 설정을 적용하기 위해서는 VMM 서비스를 재시작해야 한다.

:
Posted by 커널64
2011. 3. 25. 08:01

SCVMM 2008 R2 SP1 릴리즈~! Virtualization2011. 3. 25. 08:01

SCVMM 2008 R2 SP1이 정식 릴리즈 되었다.
http://technet.microsoft.com/en-us/evalcenter/cc793138.aspx

SP1은 Windows Server 2008 R2 SP1에서 추가된 Dynamic Memory 및 RemoteFX 기능을 지원한다.
http://www.microsoft.com/systemcenter/en/us/virtual-machine-manager/vmm-whats-new-r2.aspx
:
Posted by 커널64