ansible 安装
Posted yanling-coder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ansible 安装相关的知识,希望对你有一定的参考价值。
ansible 安装
一、控制节点要求
- ansible 可以在任何装有Python2.7 或python 3的计算机上,控制节点不支持windows;这些计算机包括redhat、Debian、Centos、macOS、任何BSD上面。
二、受管节点要求
默认,ansible 使用的python解释器,在/usr/bin/python目录下;如果你的linux 操作系统安装了python3,需要手动修改清单,将ansible默认使用的解释器,修改为/usr/bin/python3。
# 如果没有安装python,或者python解释的的路径不是默认值,那么在执行ansible命令的时候,可能会出现如下的错误: "module_stdout": "/bin/sh: /usr/bin/python: No such file or directory "
另外,如果你的目标了服务器没有安装python解释器,那么你可以使用ansible 的raw模块去预先安装python2,(ansible的raw模块的执行时不需要python解释器的,而且执行非常迅速),命令如下:
$ ansible myhost --become -m raw -a "yum install -y python2" ####### # -m raw
三、安装ansible
rpm包安装
$ sudo yum install ansible ################################ # on RHEL and CentOS
源码安装
$ git clone https://github.com/ansible/ansible.git $ cd ./ansible $ make rpm $ sudo rpm -Uvh ./rpm-build/ansible-*.noarch.rpm #################################### # 用来安装最新的开发中的ansible。
pip 安装ansible
$ sudo pip upgrade pip $ sudo pip install ansible
以上是关于ansible 安装的主要内容,如果未能解决你的问题,请参考以下文章