[ansible-project] Re: "msg": "basic: the specified credentials were rejected by the server" - Please help

2019-07-11 Thread Jordan Borean
You should never be using basic auth over http as everything is in cleartext. You would have had to 1 enable basic auth support and 2 disable the encryption check on the Windows host which should tell you this isn't recommended. You can set ntlm as the auth type (transport) as that will at leas

[ansible-project] Re: "msg": "basic: the specified credentials were rejected by the server" - Please help

2019-07-11 Thread Chris Jackson
Jordan, Many thanks for the quick response. I am using the Administrator account on the box so I dont think basic/ntlm is the issue. Not sure where else to go with this Chris -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe

[ansible-project] Re: "msg": "basic: the specified credentials were rejected by the server" - Please help

2019-07-11 Thread Jordan Borean
Then you can only go with what Windows is telling you which is the credentials are incorrect. This could mean that AWX is not passing the credentials properly or there is a typo somewhere. I don't think this is the problem but you could be having issues because the LocalAccountTokenFilterPolicy

[ansible-project] Re: "msg": "basic: the specified credentials were rejected by the server" - Please help

2019-07-11 Thread Chris Jackson
That's great! I'll try this tomorrow and let you know how I get on. -- 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 ansible-project+unsubscr...@googlegroups.c

[ansible-project] Re: "msg": "basic: the specified credentials were rejected by the server" - Please help

2019-07-12 Thread Chris Jackson
I ran the winrs command from my laptop and got the following:... Winrs error:The server certificate on the destination computer (quicker1.fyre.ibm.com:5986) has the following errors: The SSL certificate is signed by an unknown certificate authority. The SSL certificate contains a common name (CN)

[ansible-project] Re: "msg": "basic: the specified credentials were rejected by the server" - Please help

2019-07-12 Thread Jordan Borean
If you are using a self signed certificate and are connecting over https then yes you will get that error. Windows cannot verify the cert and so it fails. Try against the http listener with port 5985 instead. -- You received this message because you are subscribed to the Google Groups "Ansible