安装Ansible(废弃)

我执行了如下指令:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18

git clone git://github.com/ansible/ansible.git --recursive
cd ./ansible

# 使用Bash
source ./hacking/env-setup

# 安装pip(参考python分类下笔记)

# 安装Python模块
pip install paramiko PyYAML Jinja2 httplib2 six

# 测试
echo "127.0.0.1" > ~/ansible_hosts
export ANSIBLE_HOSTS=~/ansible_hosts

ansible all -m ping --ask-pass

参考资料

  1. Installation

    这个教程太老了,还在用Python2,现在Ansible都会提示你使用Python3

    
    ERROR: Ansible requires Python 3.8 or newer on the controller. Current version: 2.7.5 (default, Oct 14 2020, 14:45:30) [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)]