Linux编译安装最新版ansible

Posted 白-胖-子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux编译安装最新版ansible相关的知识,希望对你有一定的参考价值。

下载最新版ansible

wget https://releases.ansible.com/ansible/ansible-2.9.22.tar.gz

安装依赖

yum -y install python-jinja2 PyYAML python-paramiko python-babel python-crypto

解开压缩包

tar xvf ansible-2.9.22.tar.gz

进入目录执行安装

进入解压后的目录查看文件列表

 cd ansible-2.9.22/
 [root@C6-190 ansible-2.9.22]# ll
total 160
drwxr-xr-x  2 root root  4096 May 25 05:18 bin
drwxr-xr-x  2 root root  4096 May 25 05:18 changelogs
drwxr-xr-x  3 root root  4096 May 25 05:18 contrib
-rw-r--r--  1 root root 35148 May 25 05:18 COPYING
drwxr-xr-x  6 root root  4096 May 25 05:18 docs
drwxr-xr-x  3 root root  4096 May 25 05:18 examples
drwxr-xr-x  3 root root  4096 May 25 05:18 hacking
drwxr-xr-x  3 root root  4096 May 25 05:18 lib
drwxr-xr-x  2 root root  4096 May 25 05:18 licenses
-rw-r--r--  1 root root 13840 May 25 05:18 Makefile
-rw-r--r--  1 root root  1731 May 25 05:18 MANIFEST.in
drwxr-xr-x 10 root root  4096 May 25 05:18 packaging
-rw-r--r--  1 root root  7724 May 25 05:18 PKG-INFO
-rw-r--r--  1 root root  5175 May 25 05:18 README.rst
-rw-r--r--  1 root root   351 May 25 05:18 requirements.txt
-rw-r--r--  1 root root 12949 May 25 05:18 setup.py
-rw-r--r--  1 root root 28352 May 25 05:18 SYMLINK_CACHE.json
drwxr-xr-x  7 root root  4096 May 25 05:18 test

使用python执行安装

python setup.py build && python setup.py install

拷贝配置文件到/etc/ansible目录下

cp -r ./ansible-2.9.22/examples/* /etc/ansible/

根据具体需要修改配置文件添加主机列表

ll /etc/ansible/
total 28
-rw-r--r-- 1 root root 19985 May 25 14:41 ansible.cfg
-rw-r--r-- 1 root root  1016 May 25 14:41 hosts
drwxr-xr-x 2 root root  4096 May 25 13:53 scripts

以上是关于Linux编译安装最新版ansible的主要内容,如果未能解决你的问题,请参考以下文章

SUSE Linux 11编译安装Ansible自动化运维管理工具

在CentOS8下安装Python3和ansible

ansible自动化安装lnmp

如何使用 Ansible 创建 AWS ec2 密钥 | Linux 中国

Linux中centos中httpd源码安装过程详解

在 Fedora 中获取最新的 Ansible 2.8 | Linux 中国