配置winrm之前检查系统版本,以及powershell版本,如果是Server2008R2版本,则需要升级powershell至4.0版本。Server2012R2以上的版本不需要升级powershell。
# ansible服务端
pip install pywinrm
开启winrm
#检查powershell版本
get-host
#查看poweshell执行策略
get-executionpolicy
#更改powershell执行策略为remotesigned
cmd "/c echo A|powershell set-executionpolicy remotesigned"
#配置winrm service并启动服务
cmd "/c echo y|powershell winrm quickconfig"
#查看win service的启动监听状态
winrm enumerate winrm/config/listener
#修改winrm配置,启用远程连接认证
winrm set winrm/config/service/auth '@{Basic="true"}'
winrm set winrm/config/service '@{AllowUnencrypted="true"}'
配置hosts
[windows]
x.x.x.x
[windows:vars]
ansible_ssh_user="Administrator"
ansible_ssh_pass="SG47@5fh49Ss"
ansible_connection="winrm&
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)