Skip to content

window configuration guide

snchoi edited this page Dec 12, 2022 · 3 revisions

윈도우 환경 설정 가이드

  • Window OS 환경의 VM을 모니터링 하기 위한 에이전트 인스톨러와 에이전트 설치 및 운용을 위한 가이드이며 Cortado 버전 기준 가이드입니다.

  • 지원 환경

    • 운영체제: Windows-Server 2012 R2
    • VM, MCIS 등 IaaS 환경
    • 환경 설정 항목: 네트워크 수동 설정, 윈도우 언어 설정

네트워크 수동 설정

  • PowerShell 구동
    powershell
    
  • 네트워크 인터페이스 확인
    ipconfig /all
    
  • 네트워크 Static IP 설정
    netsh interface ipv4 set address name = "{{ 인터페이스 이름 }}" static "{{ IP }}" "{{ Subnet Mask }}" "{{ Default Gateway IP }}"
    

방화벽 설정

  • 해당 설정은 MCIS 특화 모니터링 메트릭 수집이 필요한 경우 진행합니다.
    Set-NetFirewallProfile -Profile Domain, Public, Private -Enabled False
    

윈도우 언어 설정

  • Cortado release 기준 한글, 영어를 지원합니다.
    Set-WinSystemLocale en-US
    Set-WinUserLanguageList en-US
    

powershell 버전 업그레이드 (v4 -> v5)

  1. TLS version 변경

    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls, [Net.SecurityProtocolType]::Tls11, [Net.SecurityProtocolType]::Tls12, [Net.SecurityProtocolType]::Ssl3
    [Net.ServicePointManager]::SecurityProtocol = "Tls, Tls11, Tls12, Ssl3"
    
  2. Windows Server 2012 R2 기준 powershell 5버전을 다운로드 받습니다.

    Invoke-WebRequest -Uri go.microsoft.com/fwlink/?linkid=839516 -OutFile Win8.1AndW2K12R2-KB3191564-x64.msu
    
    .\Win8.1AndW2K12R2-KB3191564-x64.msu
    

    image

  3. I Accept 클릭
    image

  4. Restart Now 클릭
    image

  5. 버전 확인
    image

Clone this wiki locally