ansible错误

[[email protected] ~]# ansible venv -m command -a "date"

Traceback (most recent call last):

File "/usr/bin/ansible", line 36, in <module>

from ansible.runner import Runner

File "/usr/lib/python2.6/site-packages/ansible/runner/__init__.py", line 62, in <module>

from Crypto.Random import atfork

File "/usr/lib64/python2.6/site-packages/Crypto/Random/__init__.py", line 29, in <module>

from Crypto.Random import _UserFriendlyRNG

File "/usr/lib64/python2.6/site-packages/Crypto/Random/_UserFriendlyRNG.py", line 38, in <module>

from Crypto.Random.Fortuna import FortunaAccumulator

File "/usr/lib64/python2.6/site-packages/Crypto/Random/Fortuna/FortunaAccumulator.py", line 39, in <module>

import FortunaGenerator

File "/usr/lib64/python2.6/site-packages/Crypto/Random/Fortuna/FortunaGenerator.py", line 34, in <module>

from Crypto.Util.number import ceil_shift, exact_log2, exact_div

File "/usr/lib64/python2.6/site-packages/Crypto/Util/number.py", line 56, in <module>

if _fastmath is not None and not _fastmath.HAVE_DECL_MPZ_POWM_SEC:

AttributeError: ‘module‘ object has no attribute ‘HAVE_DECL_MPZ_POWM_SEC‘

解决办法:

rpm -e python-crypto-2.0.1-22.el6.x86_64

pip install ansible --upgrade

时间: 2024-11-05 10:53:58

ansible错误的相关文章

Ansible错误集锦

错误一: [[email protected]01 bin]# ansible Traceback (most recent call last): File "/usr/local/bin/ansible", line 40, in <module> from ansible.errors import AnsibleError, AnsibleOptionsError, AnsibleParserError ImportError: No module named an

ansible安装过程中常遇到的错误

1.安装完成后允许命令报错 Traceback (most recent call last):   File "/usr/bin/ansible", line 197, in <module>     (runner, results) = cli.run(options, args)   File "/usr/bin/ansible", line 163, in run     extra_vars=extra_vars,   File "

Ansible 如何只输出错误信息?

有时主机较多时,我们只想关注有问题的主机. Ansible callback 插件中有一个 actionable,官方描述为: actionable - shows only items that need attention 即只输出需要关注的部分. 但是 callback 插件只对 playbook 生效,如何对 Ad-hoc 起作用呢? 参考文档:https://docs.ansible.com/ansible/2.6/plugins/callback.html#managing-adho

Linux red hat 安装ansible

今日对Linux 系统是Red Hat Enterprise Linux Server release 6.5 (Santiago)对ansible进行安装. 由于系统的源为yum源,所以使用yum install ansible 进行安装,但是报错.如图.(这个错误是yum源没有注册到red hat 系统). yum源不能安装,所以换了一个思路.使用pip安装.pip是依赖python安装的. 1.检查Python版本 Python -v 检查出来为Python 2.6.6 2.检查pip 版

ansible控制windows安装及运行error与解决方法

Q1:安装kerberos报错 $ sudo pip install kerberos running build_ext building 'kerberos' extension creating build creating build/temp.linux-x86_64-2.7 creating build/temp.linux-x86_64-2.7/src gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -

ansible学习一(安装)

Ansible是一种集成系统的配置管理工具,使用Ansible可以批量管理服务器,应用的部署,批量的执行命令,并且Ansible还是一款轻量的开源软件,Ansible部署简单,使用yum包就可安装,但是功能的确相当的丰富,所以今天特地来聊聊Ansible.Ansible还有一个特点就是无需安装agent,使用ssh认证就可以远程控制服务器,这也是我喜欢他的一个原因,如果你python够牛的话,还可以自己定制模块,并且还有api接口,许多自动化运维平台都是调用他的.首先,先看一下安装过程: 系统:

20分钟教你学会熟练使用ansible

运维自动化之ansible的安装与使用 随着服务器数量的增长,我们需要一个批量工具去提高工作效率,之前用的是puppet,ansible的简单,适用让我眼前一亮,决定写一篇ansible从安装到基本配置的文档供新手参阅. 一.安装1.安装第三方epel源centos 6的epel    [[email protected] ~]# wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm    [

ansible轻量级运维工具使用

Linux轻量级自动运维工具- Ansible 创始人 Michael DeHanan 2012-03-09 同类自动化工具: Ansible Saltstack Puppet Chef Fabric Ansible 特点 agentless (去中心化) 只要保存管理机的认证信息,那么任何一台机器都可以变成管理机 Stupied Simple SSH by default YAML no code 定制剧本 基于python 实现 模块化:调用特定模块,完成特定任务,支持自定义模块 冥等性 -

ansible的安装及配置文件更改

一 安装: http://ask.apelearn.com/question/9781 概况: l不需要安装客户端,通过sshd去通信 l基于模块工作,模块可以由任何语言开发 l不仅支持命令行使用模块,也支持编写yaml格式的playbook l支持sudo l有提供UI(浏览器图形化)www.ansible.com/tower  10台主机以内免费 l开源UI  https://github.com/alaxli/ansible_ui 文档 http://download.csdn.net/d