Ansible-Tower ssl:服务器拒绝指定的凭据

时间:2018-04-05 15:47:14

标签: ansible ansible-tower

使用ansible-tower连接到我的Windows机器时出现以下错误。

我确实使用了ansible tower connecting to windows,他们建议在库存中使用以下内容>变量 ansible_connection:winrm ansible_ssh_port:5986 ansible_winrm_server_cert_validation:忽略

但是当我运行它仍然失败时,看起来它仍然试图使用ssh而不是winrm进行连接。以下是我的安莎塔工作的结果:

> ansible-playbook 2.4.1.0   
 config file = /etc/ansible/ansible.cfg  
> configured module search path = [u'/var/lib/awx/.ansible/plugins/modules',
> u'/usr/share/ansible/plugins/modules']   ansible python module
> location = /usr/lib/python2.7/site-packages/ansible   executable
> location = /usr/bin/ansible-playbook   python version = 2.7.5
> (default, May  3 2017, 07:55:04) [GCC 4.8.5 20150623 (Red Hat
> 4.8.5-14)] Using /etc/ansible/ansible.cfg as config file SSH password:  PLAYBOOK: main.yaml
> ************************************************************ 1 plays in main.yaml PLAY [all]
> ********************************************************************* 11:24:35 TASK [Gathering Facts]
> ********************************************************* 11:24:35 fatal: [server_ip]: UNREACHABLE! => {"changed": false, "msg": "ssl:
> the specified credentials were rejected by the server", "unreachable":
> true}

我错过了什么吗?我看到大多数人都在谈论安赛而不是塔。我能够使用ansible工作,所以我知道我可以连接到Windows服务器。感谢。

2 个答案:

答案 0 :(得分:1)

由于作者ansible kerberos setup,可以通过本文了解这项工作,可以帮助其他人:

  1. 安装krb5-workstation,gcc,krb5-devel,krb5-libs,pip install kerberos,pip install requests_kerberos
  2. 按照文章首先测试与Windows的ansible连接
  3. 将组下的主机名更改为FQDN名称,而不是塔中的IP。如果需要,您可以将ansible_winrm_transport:kerberos添加到变量
  4. 重新开始工作。

答案 1 :(得分:1)

我在谷歌上搜索了很多,最后下面的配置对我有用。我已将 ntlm 添加到我的配置文件中。

ansible_user: user@DOMAIN.COM
ansible_password: password
ansible_connection: winrm
ansible_ssh_port: 5986
ansible_winrm_transport: ntlm
ansible_winrm_server_cert_validation: ignore