1、Ansible安装
采用yum方式进行,首先需安装EPEL源。安装步骤如下(以centos6.8为例):
# yum install http://mirrors.sohu.com/fedora-epel/6/x86_64/epel-release-6-8.noarch.rpm
# yum install ansible
PS:EPEL (Extra Packages for Enterprise Linux)是基于Fedora的一个项目,为“红帽系”的操作系统提供额外的软件包,适用于RHEL、CentOS和Scientific Linux.
对于‘centos7’, 请参考: http://www.cnblogs.com/litifeng/p/5716952.html
安装完成后,Ansible默认目录为/etc/ansible/,该目录下包含以下几个文件:
[root@test6 ~]# cd /etc/ansible/
[root@test6 ansible]# ls -l
total 20
-rw-r--r--. 1 root root 14388 Jan 17 06:35 ansible.cfg
-rw-r--r--. 1 root root 1196 Feb 18 13:53 hosts
drwxr-xr-x. 2 root root 6 Jan 17 06:35 roles
[root@test6 ansible]#
其中,
ansible.cfg :Ansible的配置文件,主要定义了Ansible的默认配置部分,后续将详细介绍;
hosts:Ansible默认的Inventory文件,主要记录Ansible配置管理的主机,可进行分类。