CentOS7.5安装Ansible

安装ansible:
查看可用的ansible版本:
yum list|grep ansible
 
方法一:
系统可用ansible版本太低,安装epel源:
yum install epel-release -y
从epel源安装高版本 ansible:
yum install ansible -y
 
方法二:
 1、 python版本需要2.6以上,不过通过centos7都会默认安装上python2.7.5,查看方法:python -V
 2、 添加yum 源
    a、 vim /etc/yum.repos.d/ansible
    b、 添加如下内容:
      [epel]
      name = all source for ansible
      baseurl = https://mirrors.aliyun.com/epel/7/x86_64/
      enabled = 1
      gpgcheck = 0
 
      [ansible]
      name = all source for ansible
      baseurl = http://mirrors.aliyun.com/centos/7.3.1611/os/x86_64/
      enabled = 1
      gpgcheck = 0
  3、 yum clean all
  4、 安装ansible:yum install ansible -y
 
安装完成后,看ansible版本:
ansible --version
posted @ 2022-03-16 21:54  明明改变世界  阅读(301)  评论(0编辑  收藏  举报