ansible 安装部署

Posted

tags:

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

ansible安装部署非常简单,只依赖于python和ssh,而这两个依赖默认都已经安装,我接触到的环境大部分是centos、redhat环境,也有少数ubuntu、suse这类系统,不过还是尽熟悉的来,在centos 操作系统安装ansible作为管理节点。

一、pip安装

ansbile 底层也是基于python编写,所以通过pip方式可以安装ansible
步骤1:安装python-pip及pythondevel程序包
shell> yum install python-pip python-devel -y

步骤2:安装环境检查
//确保服务器安装了gcc glibc 等开发环境包
shell> yum install gcc glibc-devel zlib-devel rpm-build openssl-devel -y
//更新pip至最新版本
shell> pip install --upgrde pip

步骤3:安装ansible
shell> pip install ansible --upgrade

步骤4:查看安装的ansible版本
shell> ansible --version
ansible 2.7.10

注释:centos7.5 这个方法不一定能安装成功,因为python版本的问题,当你pip的时候,新版本的ansible会报错python过低。
如果对系统python 版本升级,那你会碰到好多的问题,推荐2个工具大家可以了解下,Pyenv / Virtualenv 多python环境扩展管理工具。

二、yum 安装

(1)添加yum源 选择阿里epel源
shell> rpm -ivh https://mirrors.aliyun.com/epel/epel-release-latest-7.noarch.rpm centos7
shell> rpm -ivh https://mirrors.aliyun.com/epel/epel-release-latest-6.noarch.rpm centos6

(2) yum 安装ansible
shell> yum -y install ansible

三、 apt-get 安装

(1)添加ansible源
shell> apt-add-repository -y ppa:ansible/ansible
(2)安装ansible
shell> apt-get update
shell> apt-get install -y ansible

以上是关于ansible 安装部署的主要内容,如果未能解决你的问题,请参考以下文章

Ansible之AWX安装部署

Ansible 的安装及部署

ansible 安装部署

第1天:Ansible安装部署

Ansible安装部署

自动化运维之ansible-安装部署与基础命令篇