1

When I try to execute any Ansible playbook, the following error message appears:

fatal: [pxenode2]: UNREACHABLE! => {"changed": false, "msg": "Data could not be sent to remote host \"10.0.2.102\". Make sure this host can be reached over ssh: unix_listener: cannot bind to path /home/ansible/.ansible/cp/10.0.2.102-22-root.nU3g4P0atprONMXr: No such file or directory\r\n", "unreachable": true}
fatal: [pxemail]: UNREACHABLE! => {"changed": false, "msg": "Data could not be sent to remote host \"10.0.2.126\". Make sure this host can be reached over ssh: unix_listener: cannot bind to path /home/ansible/.ansible/cp/10.0.2.126-22-root.2yQe8XjNZQTT5d2O: No such file or directory\r\n", "unreachable": true}
fatal: [pxenode1]: UNREACHABLE! => {"changed": false, "msg": "Data could not be sent to remote host \"10.0.2.101\". Make sure this host can be reached over ssh: unix_listener: cannot bind to path /home/ansible/.ansible/cp/10.0.2.101-22-root.PiPj5R1K3LZ7JEKC: No such file or directory\r\n", "unreachable": true}
fatal: [pxenode3]: UNREACHABLE! => {"changed": false, "msg": "Data could not be sent to remote host \"10.0.2.103\". Make sure this host can be reached over ssh: unix_listener: cannot bind to path /home/ansible/.ansible/cp/10.0.2.103-22-root.dr33H9rhN9LCHi3K: No such file or directory\r\n", "unreachable": true}

Where does this information come from? Everything has worked perfectly before, so I'm not sure what I did to cause this error.

1 Answers1

1

As per this answer, the fix was to set the following in ansible.cfg:

[ssh_connection]
pipelining = False
Artur Meinild
  • 31,385