Ansible Test - Playbook-Windows Server - Registry Update

CodingDaddy·2022년 3월 21일
0

Ansible

목록 보기
7/11

Ansible로 다중 서버의 환경구성 관리, 파일 관리를 최소한의 시간 + 자동화 + Human Error 0%로 처리하기

윈도우서버 레지스트리 업데이트

Target: windows-server Group

[Inventory]

[windows-server]
win1 ansible_host=172.22.0.39 ansible_connection=winrm ansible_password=ansible ansible_user=ansible ansible_winrm_server_cert_validation=ignore

테스트 목표

소스 서버 (Ansible Engile)에서 windows-server 가 속한 서버의 Registry 생성 및 값 설정하기

[win-registry-playbook.yml]

- hosts: windows-server
  tasks:
   - name: Creating a registry
     win_regedit:
      path: HKLM:\SOFTWARE\ANSIBLE-TEST

   - name: Modifying a registry, adding name and data
     win_regedit:
      path: HKLM:\SOFTWARE\ANSIBLE-TEST
      name: TestYN
      data: Yes

준비사항 (windows Server)

  • OpenSSH 설치
  • 5986 port winrm ssl 실행
  • 방화벽 5986 포트 OPEN
  • Python 설치

winrm 모듈 설치 (windows Server)

ansilbe 엔진에서 아래와 같이 명령할 때

[ansible@ansible-engine ~]# ansible -i /etc/ansible/hosts win -m win_ping
172.22.0.39 | UNREACHABLE! => {
    "changed": false, 
    "msg": "ssl: HTTPSConnectionPool(host='172.22.0.39', port=5986): Max retries exceeded with url: /wsman (Caused by ConnectTimeoutError(, 'Connection to 172.22.0.39 timed out. (connect timeout=30)'))", 
    "unreachable": true
}

windows server에 winrm 5986 port를 listenling을 안하고 있다.
--> winrm ssl 실행이 안 되고 있음

windows server > 파워쉘 실행

$url = "https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1"
$file = "$env:temp\ConfigureRemotingForAnsible.ps1"
(New-Object -TypeName System.Net.WebClient).DownloadFile($url, $file)
powershell.exe -ExecutionPolicy ByPass -File $file
profile
Creative - DevOps in Korea

0개의 댓글