ASD 환경이 아닌 Windows(Ansible 운영 AD 환경)
TL;DR
WSL2의 Ubuntu20은 Active Directry의 Window10에 포함되지 않았습니다.04 설치를 위한 Ansible 작업 환경이 구축되었습니다.kerberos 인증이 필요하지 않기 때문에 AD에 참가한 환경보다 간단합니다.
절차.
Windows 10
WSL2, Ubuntu20을 활성화합니다.설치
원격 연결 설정 수락(관리자 권한 필요)
Invoke-WebRequest -Uri https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1 -OutFile ConfigureRemotingForAnsible.ps1
powershell -ExecutionPolicy RemoteSigned .\ConfigureRemotingForAnsible.ps1
Ubuntu20.04
최신 Ansible 설치
sudo apt update
sudo apt install software-properties-common
sudo apt-add-repository --yes --update ppa:ansible/ansible
sudo apt install ansible
다음 app 패키지 설치
pip3로 다음 Python 프로그램 라이브러리 설치
inventory.yml
에 다음과 같은 기술을 기재하다windows:
hosts:
192.168.yy.yyy:
ansible_connection: winrm
ansible_user: user_name
ansible_winrm_server_cert_validation: ignore
ansible_winrm_transport: basic
ansible_port: 5986
확인
ansible -i inventory.yml 192.168.yyy.yyy -m win_ping
성공 여부Reference
이 문제에 관하여(ASD 환경이 아닌 Windows(Ansible 운영 AD 환경)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/tack41/articles/20211125_001텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)