ansible安装
文章目录 * 1 介绍 * 2 安装 * 2.1 ansible在线安装 * 2.2 离线安装 * 2.2.1 rpm包安装 * 2.2.2 编译安装 介绍 ansible是新出现的自动化运维工具,基于Python开发,实现了批量系统配置、批量程序部署、批量运行命令等功能。 安装 ansible在线安装 ansible安装常用两种方式,yum安装和pip程序安装 这里提供二种安装方式,任选一种即可: 1、使用yum安装 #epel源 yum install epel-release -y #安装ansible yum install ansible –y 2、 使用pip(python的包管理模块)安装 #安装pip yum install