博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ansible安装过程中遇到过的问题
阅读量:6306 次
发布时间:2019-06-22

本文共 1901 字,大约阅读时间需要 6 分钟。

from: http://www.ansible.cn/forum.php?mod=viewthread&tid=67&extra=page%3D1

1出现Error: ansible requires a json module, none found!

SSH password:

192.168.24.15 | FAILED >> {

   "failed": true,

   "msg": "Error: ansible requires a json module, nonefound!",

   "parsed": false

}

解决:python版本过低,要不升级python要不就安装python-simplejson

2安装完成后连接客户端服务器报错:

FAILED => Using a SSH password insteadof a key is not possible because Host Key checking is enabled and sshpass doesnot support this.  Please add this host'sfingerprint to your known_hosts file to manage this host.

解决:ansible 服务器上使用ssh 登陆下/etc/ansible/hosts 里面配置的服务器。然后再次使用ansible 去管理就不会报上面的错误了!但这样大批量登陆就麻烦来。因为默认ansible是使用key验证的,如果使用密码登陆的服务器,使用ansible的话,要不修改ansible.cfg配置文件的ask_pass = True给取消注释,要不就在运行命令时候加上-k,这个意思是-k, --ask-pass ask for SSH password。再修改:host_key_checking= False即可

3如果客户端不在know_hosts里将会报错

paramiko: The authenticity of host '192.168.24.15'can't be established.

The ssh-rsa key fingerprint is397c139fd4b0d763fcffaee346a4bf6b.

Are you sure you want to continueconnecting (yes/no)?

解决:需要修改ansible.cfg#host_key_checking= False取消注释

4出现FAILED => FAILED: not a valid DSA private key file

解决:需要你在最后添加参数-k

5openssh升级后无法登录报错

PAM unable todlopen(/lib64/security/pam_stack.so): /lib64/security/pam_stack.so: cannot openshared object

file: No such file or directory

解决:sshrpm 升级后会修改/etc/pam.d/sshd 文件。需要升级前备份此文件最后还原即可登录。

6pip安装完成后,运行ansible报错:

File "/usr/lib64/python2.6/subprocess.py",line 642, in __init__ errread, errwrite)

解决:安装:yum installopenssh-clients

7第一次系统初始化运行生成本机ansible用户key时报错

failed: [127.0.0.1]: FAILED! => {"changed": true, "failed": true, "msg": "Aborting, target uses selinux but python bindings (libselinux-python) aren't installed!"}

    to retry, use: --limit @/apps/yaml/roles.retry

解决:# yum install libselinux-python -y

注意这个是在 host机器上安装,不是在ansible控制机器上。

本文转自奔跑在路上博客51CTO博客,原文链接http://blog.51cto.com/qiangsh/1967549如需转载请自行联系原作者
qianghong000
你可能感兴趣的文章
在 Linux 下使用 fdisk 扩展分区容量
查看>>
结合AlphaGo算法和大数据的量化基本面分析法探讨
查看>>
如何在 Ubuntu Linux 16.04 LTS 中使用多个连接加速 apt-get/apt
查看>>
《OpenACC并行编程实战》—— 导读
查看>>
机器学习:用初等数学解读逻辑回归
查看>>
如何在 Ubuntu 中管理和使用逻辑卷管理 LVM
查看>>
Oracle原厂老兵:从负面案例看Hint的最佳使用方式
查看>>
把自己Github上的代码添加Cocoapods支持
查看>>
C语言OJ项目参考(2493)四则运算
查看>>
零基础入门深度学习(二):神经网络和反向传播算法
查看>>
find和xargs
查看>>
数据结构例程—— 交换排序之快速排序
查看>>
WKWebView代理方法解析
查看>>
IOS定位服务的应用
查看>>
[SMS&WAP]实例讲解制作OTA短信来自动配置手机WAP书签[附源码]
查看>>
IOS中图片(UIImage)拉伸技巧
查看>>
【工具】系统性能查看工具 dstat
查看>>
基于zepto或jquery的手机端弹出框成功,失败,加载特效
查看>>
php引用(&)
查看>>
Delphi 操作Flash D7~XE10都有 导入Activex控件 shockwave
查看>>