admin 管理员组文章数量: 887017
一、实验环境
- windows os: Windows 7 Service Pack 1
- ansible manager: centos 7
- ansible version: 2.3.1.0
- python version: 2.7.5
二、配置ansible manager
- 如没有安装pip则需先安装pip
[root@localhost ~]# easy_install pip
使用pip安装pywinrm及kerberos
pip install http://github/diyan/pywinrm/archive/master.zip#egg=pywinrm
pip install kerberos
在安装kerberos之前需要安装
yum install libkrb5-dev
否则会报错
三、配置windows主机
- 以管理员身份打开powershell, 并查看当前ps版本
- 系统自带的powershell版本是2.0,需要更新至powershell 3 以上版本
a. 下载安装Microsoft .NET Framework 4
https://www.microsoft/en-us/download/details.aspx?id=17851
b. 下载安装Windows Management Framework 3.0
https://www.microsoft/en-us/download/details.aspx?id=34595
选择 Windows6.1-KB2506143-x64.msu(这里注意看一下System Requirements里面的Supported Operating System,即Windows 7 Service Pack 1, Windows Server 2008 R2 SP1, Windows Server 2008 Service Pack 2)
c.安装完,重启服务器,查看powershell版本
配置winrm
mkdir C:\work cd C:\work Invoke-WebRequest -Uri https://raw.githubusercontent/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1 -OutFile ConfigureRemotingForAnsible.ps1 powershell -ExecutionPolicy RemoteSigned .\ConfigureRemotingForAnsible.ps1 -SkipNetworkProfileCheck
四、功能测试
配置ansible控制机
[root@localhost ~]# vi /etc/ansible/hosts [windows] 192.168.67.139 [windows:vars] ansible_user=Administrator ansible_password=123456 ansible_port=5985 ansible_connection=winrm ansible_winrm_server_cert_validation=ignore
要注意的是 端口方面ssl即https方式的使用5986,http使用5985。
- 测试通信
ansible windows -m win_ping
查看ip地址
ansible windows -m win_command -a "ipconfig"
修改上面的中文乱码问题
对命令输出的信息进行utf-8编码,修改winrm模块的protocol.pysed -i "s#tdout_buffer.append(stdout)#tdout_buffer.append(stdout.decode('gbk').encode('utf-8'))#g" /usr/lib/python2.7/site-packages/winrm/protocol.py sed -i "s#stderr_buffer.append(stderr)#stderr_buffer.append(stderr.decode('gbk').encode('utf-8'))#g" /usr/lib/python2.7/site-packages/winrm/protocol.py
修改完之后,重新运行命令,中文已正常显示。
区别于控制Linux主机,win主机的命令,需要加上win_,具体支持情况请见官网
http://docs.ansible/ansible/list_of_windows_modules.html
版权声明:本文标题:Ansible管理windows系统 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1726303342h932883.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论