Ansible Test - Playbook-Windows Server - Registry Update
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
Author And Source
이 문제에 관하여(Ansible Test - Playbook-Windows Server - Registry Update), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@codingdaddy/Ansible-Test-Playbook-Windows-Server-Registry-Update저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)