我使用Ansible团队建议的脚本在Windows Server 2012计算机上配置了WinRM:https://raw.githubusercontent.com/ansible/ansible/devel/examples/scripts/ConfigureRemotingForAnsible.ps1
在Ansible控制机器(Linux机器)上,配置如下所示:
ansible_user: Administrator
ansible_password: PASS
ansible_port: 5985
ansible_connection: winrm
ansible_winrm_scheme: http
ansible_winrm_server_cert_validation: ignore
尝试ping Windows机器我仍然得到:
10.2.75.142 | UNREACHABLE! => {
"changed": false,
"msg": "plaintext: the specified credentials were rejected by the server",
"unreachable": true
}
用户凭据是属于Administrator组的本地Windows用户的工作凭据。我还在错过任何一方的配置吗?
答案 0 :(得分:1)
我有类似的问题。通过Ansible,我得到了:
the specified credentials were rejected by the server
但是当使用winrs从windows机器执行命令时,它很好。例如:
winrs -r:https://myserver.com -u:Administrator -p:PASS ipconfig
正在经历。
不幸的是,没有找到任何解决方案让Ansible运行基本身份验证。 解决方法是使用 NTLM身份验证。刚刚添加
ansible_winrm_transport: ntlm
控制机器配置,从那以后工作正常。