[ansible-project] Re: WINRM CONNECTION ERROR: function takes at most 2 arguments (3 given)

2020-05-21 Thread Kiran Kumar
I used a fresh box & finally did below & wored yum install -y python3-devel pip install pykerberos Thanks @Jordan On Thursday, May 21, 2020 at 5:37:40 PM UTC-7, Jordan Borean wrote: > > The issue here is the kerberos library you have installed is either too > old or incompatible with what

[ansible-project] Re: WINRM CONNECTION ERROR: function takes at most 2 arguments (3 given)

2020-05-21 Thread Kiran Kumar
Anyways i did below 1017 21/05/20 17:47:19 yum remove python-kerberos-1.1-15.el7.x86_64 1018 21/05/20 17:49:29 rpm -qa|grep -i kerb 1019 21/05/20 17:49:43 pip install pykerberos 1020 21/05/20 17:49:55 pip install requests-kerberos 1021 21/05/20 17:50:05 ansible windows -m win_ping

[ansible-project] Re: WINRM CONNECTION ERROR: function takes at most 2 arguments (3 given)

2020-05-21 Thread Kiran Kumar
Shall i do below yum remove python-kerberos-1.1-15.el7.x86_64 = Package

[ansible-project] Re: WINRM CONNECTION ERROR: function takes at most 2 arguments (3 given)

2020-05-21 Thread Kiran Kumar
Thanks for the reply You mean : yum remove -y krb5-devel krb5-libs krb5-workstation And re-run *pip install pykerberos* On Thursday, May 21, 2020 at 5:37:40 PM UTC-7, Jordan Borean wrote: > > The issue here is the kerberos library you have installed is either too > old or

[ansible-project] Re: WINRM CONNECTION ERROR: function takes at most 2 arguments (3 given)

2020-05-21 Thread Jordan Borean
The issue here is the kerberos library you have installed is either too old or incompatible with what requests-kerberos requires. Uninstall both kerberos and pykerberos and install just pykerberos. You may want to update requests-kerberos as well as 0.7.0 is quite old. -- You received this