環境需求:
* Controller 一定是Linux
* Windows 需要:
1.Framework 4.5
# 2.PowerShell 3.0
原料:
Ansible Master (CentOS)
Anisble Slave (Windows SP1)
# 步驟:
[Linux ]
yum -y install python-kerberos.x86_64 python2-winrm.noarch
[Windows]
#下載 Framework 4.5
http://download.microsoft.com/download/B/A/4/BA4A7E71-2906-4B2D-A0E1-80CF16844F5F/dotNetFx45_Full_x86_x64.exe
下載PowerShell 3.0
https://download.microsoft.com/download/E/7/6/E76850B8-DA6E-4FF5-8CCE-A24FC513FD16/Windows6.1-KB2506143-x64.msu
完成完成後會重新啟動## 下載 Remoting Script for Ansible
https://github.com/ansible/ansible/blob/devel/examples/scripts/ConfigureRemotingForAnsible.ps1
使用管理員身分執行腳本
使用管理員身分開啟PowerShell
winrm qc
其實不算是錯誤,只要要求改網路的屬性:在網路和共享中心把公共網絡,切換成家庭網路
再次執行
winrm qc
接下來需要開啟windows 遠端操作的相關屬性:
winrm set winrm/config/service '@{AllowUnencrypted="true"}'
winrm set winrm/config/service/auth '@{Basic="true"}'
netstat -ano | findstr 5985
cat /etc/ansible/hosts
10.0.50.100 ansible_ssh_user="Administrator" ansible_ssh_pass="123456" ansible_ssh_port=5986 ansible_connection="winrm"
以上是詳細介紹Windows下如何使用Ansible應用程式的執行個體的詳細內容。更多資訊請關注PHP中文網其他相關文章!