本实验使用的环境为Redhat8.3,使用7版本的,请将yum的网址进行修改
一、安装并配置 Ansible, 要求如下 :
1、安装所需的软件包
2、创建静态inventory文件/root/ansible/inventory,要求如下:
servera属于dev主机组
serverb属于test和balancers主机组
serverc和serverd属于prod主机组
prod主机组属于webservers主机组
3、创建ansible配置文件/root/ansible/ansible.cfg,要求如下:
使用/root/ansible/inventory清单文件
角色存放在/rootansible/roles/ 目录
1.安装ansible
yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
yum -y install ansible
验证
ansible --version
2.创建静态inventory文件/root/ansible/inventory
mkdir /root/ansible/
vim /root