Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. ansible_user: user@domain.local
  2. ansible_password: Password
  3. ansible_connection: winrm
  4. ansible_winrm_transport: kerberos
  5. ansible_port: 5986
  6. ansible_winrm_server_cert_validation: ignore
  7.  
  8. [win]
  9. win1.domain.local
  10.  
  11. ansible-playbook -i hosts playbook.yml
  12.  
  13. fatal: [win1.domain.local]: UNREACHABLE! => {
  14. "changed": false,
  15. "msg": "kerberos: HTTPSConnectionPool(host='win1.domain.local', port=5986): Max retries exceeded with url: /wsman (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x7f30681818d0>: Failed to establish a new connection: [Errno -2] Name or service not known',))",
  16. "unreachable": true
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement