http://docs.ansible.com/ansible/latest/user_guide/windows_winrm.html .
What does the entry in the hosts inventory look like? kerberos is generally used when you are using a domain account and need second hop capabilities. The example below uses NTLM which is older but does also work quite well. [win:vars] ansible_user: [email protected] ansible_password: xxxxxxxxxxx ansible_connection=winrm ansible_winrm_transport: ntlm ansible_winrm_server_cert_validation: ignore If you want to use Kerberos then you will need the packages: yum -y install python-devel krb5-devel krb5-libs krb5-workstation On Friday, May 25, 2018 at 9:57:57 PM UTC+2, [email protected] wrote: > > Now I am getting new error: > My first error was: > VATCS028.ARITST.LCL | UNREACHABLE! => { > "changed": false, > "msg": "plaintext: the specified credentials were rejected by the > server", > "unreachable": true > } > vabcs012.aritst.lcl | UNREACHABLE! => { > "changed": false, > "msg": "plaintext: HTTPConnectionPool(host='10.12.12.12', port=5985): > Max retries exceeded with url: /wsman (Caused by > NewConnectionError('<urllib3.connection.HTTPConnection object at > 0x7f02859474d0>: Failed to establish a new connection: [Errno 111] > Connection refused',))", > > After which I added a line (noticing that I had forgot to mention that in > my vars) in hosts vars: > > ansible_winrm_transport: Kerberos > > > and now I have this error: > > VATCS029.ARITST.LCL | UNREACHABLE! => { > > "changed": false, > > "msg": "kerberos: the python kerberos library is not installed", > > "unreachable": true > > Bare with me, I need to resolve this. Its been a month I am trying to fix > these thing. > Also I want to ask, if I should do a new ansible server setup on a CentOS > and try working from start? > > On Friday, May 25, 2018 at 12:27:19 PM UTC-7, Jordan Borean wrote: >> >> When using an ini inventory you have to define cars like key=value not >> key: value. Change all your vars to that format and the inventory will be >> parsable. > > -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/dde0a3a0-8f06-4492-b3a1-87bc3f102f37%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
