首页 > 代码库 > [ansible学习笔记]Error: ansible requires the stdlib json or simplejson module, neither was found!
[ansible学习笔记]Error: ansible requires the stdlib json or simplejson module, neither was found!
1、执行ansible命令的时候客户端rhel56-192.168.209.133 出现以下错误:
[root@reedoracle ansible]# ansible all -m command -a "python -V" -u reed SSH password: rhel56-192.168.209.133 | FAILED | rc=0 >> Error: ansible requires the stdlib json or simplejson module, neither was found!
2、查看该客户端的python版本:
[root@localhost ~]# python -V Python 2.4.3
3、错误原因:python版本过低
4、解决办法,二选一:
1)升级客户端的python版本至python2.5.x及以上
2)客户端上安装python-simplejson
附官方说明:
托管节点要求:
通常我们使用 ssh 与托管节点通信,默认使用 sftp.如果 sftp 不可用,可在 ansible.cfg 配置文件中配置成 scp 的方式. 在托管节点上也需要安装 Python 2.4 或以上的版本.如果版本低于 Python 2.5 ,还需要额外安装一个模块:
● python-simplejson
● 没安装python-simplejson,也可以使用Ansible的”raw”模块和script模块,因此从技术上讲,你可以通过Ansible的”raw”模块安装python-simplejson,之后就可以使用Ansible的所有功能了.
[ansible学习笔记]Error: ansible requires the stdlib json or simplejson module, neither was found!
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。