ansible安装

  • 安装参考这里:https://www.jianshu.com/p/575ced3a08fa
  1. yum -y install ansible wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo(下载yum源)
  2. pip install ansible
  3. 从github下载
$ git clone git://github.com/ansible/ansible.git --recursive
$ cd ./ansible
$ make rpm
$ sudo rpm -Uvh ./rpm-build/ansible-*.noarch.rpm

就用epel.repo,然后yum install ansible
然后报错,python-six required

  • python-six参考这里:http://bbs.51cto.com/thread-1416111-1.html

在http://rpm.pbone.net/

上搜索

python-six-1.9.0-2.el6.noarch.rpm

找个能下载的下载下来,然后rpm -ivh python-six-1.9.0-2.el6.noarch.rpm

  • 然后再yum install ansible就可以了

你可能感兴趣的:(ansible安装)