Ansible在配置过程中最终出错

时间:2015-05-13 17:48:59

标签: python provisioning ansible-playbook

从OS X主机配置带有Ansible 1.9.1的服务器时,我在配置过程的随机点出现以下错误:

No handlers could be found for logger "paramiko.transport"
fatal: [xxx.xxx.xxx.xxx] => 
{'msg': 'One or more items failed.', 'failed': True, 'changed': False, 'results': 
    [{'invocation': {'module_name': 'somemodule', 'module_args': ''},
    'item': {'priv': 'ALL', 'moreitems'}, 'changed': False, 'user': ''}, 
            {'msg': 'FAILED: Error reading SSH protocol banner[Errno 
              54] Connection reset by peer', 'failed': True}]}

FATAL: all hosts have already failed -- aborting

为什么同位点在随机点重置的连接超出了我的范围。我没有配置paramiko记录的东西。

如果在Ansible,Linux服务器,OS X主机或其他地方出现此错误?

1 个答案:

答案 0 :(得分:0)

问题最终成为pycrypto的Python 2.6版本。

solution from dennen99为我修好了。

我假设升级到Python2.7也可以解决问题(我没有测试过)。