首页 网维知识库 Ansible 介绍

Ansible 介绍

什么是 Ansible Ansible 是一个简单,强大且无代理的自动化语言。 Ansible 的好处: 简单易读:基于 YAML 文本编写,易于阅读,非专业的开发人员也可以编写。…

什么是 Ansible

Ansible 是一个简单,强大且无代理的自动化语言。

Ansible 介绍插图

Ansible 的好处:

简单易读:基于 YAML 文本编写,易于阅读,非专业的开发人员也可以编写。

功能强大:它可以同于管理配置,软件安装,流程自动化

无代理:不需要在客户端安装额外的 agent

跨平台支持:支持 linux,Windows,Unix 和网络设备

Ansible 是如何工作的

Ansible 典型的工作方式是通过一个脚本文件(基于 YAML 格式构建的)去控制远端操作系统按照特定的顺序执行相关任务,我们称这个文件为 playbook;

架构

节点:Ansible 架构中拥有两种计算机类型,即控制节点和受控节点。Ansible 运行在控制节点上,并且只能运行在 linux 操作系统上,对于被控节点,可以是主机设备,也可以是网络设备,主机设备的操作系统,可以是 Windows,也可以是 linux。

Ansible 介绍插图1

清单(inventory): 受控节点设备的列表。在这个列表中,你可以根据某些标准(如,作用,服务等)将拥有相同属性的计算机组织到一个组中。Ansible 清单,支持静态清单(一旦定义好,除非你修改配置文件,不然不会发生改变。),也支持动态清单(通过脚本从外部源获取清单,该清单可以随着环境的改变而改变。)。

Playbook: 需要在被控节点主机上运行的任务列表,从而让他们达到我们预期的状态。Playbook 中包含一个或多个 play,每个 play 会在一组或多组计算机上按顺序执行已经定义好的一系列 task,每个 task 都是一个执行模块。

模块(Module): 用于确保主机处于某一个特定的状态,例如可以使用 yum(对于不同发行版本的 Linux,模块名可能有所不同个,如,在 Ubuntu 中与之对应的是 apt 模块。) 模块确保主机已经安装了某个软件,如果主机状态已经是预期的了(已经安装了该软件),那么就不会执行任何操作,执行下一个模块(task)。

Plugin 添加到 Ansible 中的代码段,用于扩展 Ansible 平台

安装 Ansible

在 Ubuntu 上安装 ansible

it@workstation:~$ sudo apt install -y ansible

安装完成后,你可以通过 ansible –version 查看 ansible 的版本信息

it@workstation:~$ ansible --version
ansible 2.9.6
  config file = /etc/ansible/ansible.cfg
  configured module search path = ['/home/it/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python3/dist-packages/ansible
  executable location = /usr/bin/ansible
  python version = 3.8.2 (default, Jul 16 2020, 14:00:26) [GCC 9.3.0]

配置 Ansible

Ansible 提供的默认主机配置文件:

it@workstation:~$ ls -l /etc/ansible/ansible.cfg 
-rw-r--r-- 1 root root 19985 3月   5  2020 /etc/ansible/ansible.cfg

* 只有 root 用户才有权限编辑。

创建新的主机配置文件:

一般情况,我们直接复制默认配置文件,然后根据需要修改复制过来的配置文件。

it@workstation:~$ mkdir ansible
it@workstation:~$ cp /etc/ansible/ansible.cfg ansible/
it@workstation:~$ ls -l ansible/
total 24
-rw-r--r-- 1 it it 19985 12月 29 15:03 ansible.cfg

* 在创建新的配置文件之前,我们首先需要创建一个用于测试 Ansible 的工作目录,然后再创建配置文件。

当我们拥有多个配置文件时,配置文件生效的顺序为:

  • 当前目录下:./ansible.cfg 
  • home 目录下:~/ansible.cfg
  • 默认配置文件:/etc/ansible/ansible.cfg

复制完成后,我们可以通过 ansible –version 查看当前生效的配置文件

it@workstation:~$ cd ansible/
it@workstation:~/ansible$ ansible --version
ansible 2.9.6
  config file = /home/it/ansible/ansible.cfg
  configured module search path = ['/home/it/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python3/dist-packages/ansible
  executable location = /usr/bin/ansible
  python version = 3.8.2 (default, Jul 16 2020, 14:00:26) [GCC 9.3.0]

* 你需要切换到 Ansible 的工作目录,不然 Ansible 工作目录下的配置文件是无效的。

对于默认配置文件,我们当前需要了解的有两个模块:defaults 和 privilege_escalation

defaults 模块:

inventory: 指定清单文件路径

host_key_checking : 是否检查主机 key 是否可信

remote_user: 远程连接时使用的用户,默认使用当前用户

ask_pass: 连接时是否询问输入密码(如果没有配置密钥登录,需要配置该选项为 true。)

privilege_escalation 模块:sudo 提权相关的配置

become: 是否开启切换用户

become_method: 如何切换用户

become_user: 切换到那个用户

become_ask_pass: 是否提示输入密码

更改配置文件

it@workstation:~/ansible$ vim ansible.cfg 
it@workstation:~/ansible$ grep -vE '^$|#' ansible.cfg 
[defaults]
inventory      = /home/it/ansible/hosts
host_key_checking = False
remote_user = it
ask_pass      = True
[inventory]
[privilege_escalation]
become=True
become_method=sudo
become_user=root
become_ask_pass=True
[paramiko_connection]
[ssh_connection]
[persistent_connection]
[accelerate]
[selinux]
[colors]
[diff]

清单(Inventory)

Ansible 提供了一个示例清单文件,并给我们提供了一些常规的示例:

EX 1: 将未分组的主机放在所有组的前面的;

EX 2: 通过 [ ] 指定主机组的名称,如,webservers,下面直到下一个组名(dbservers)前结束的都是属于该组的主机,即使主机与主机之间存在空行,但如没有到下一个组名,他们依然属于同一个主机组;如果某些主机之间有某些顺序关系,你可以通过简写,将他们放到同一行,如示例中的 “www[001:006].example.com”,分别表示 www001.example.com、www002.example.com、www003.example.com、www004.example.com、www005.example.com 和 www006.example.com。

EX 3: 提供了另一种主机范围的示例

it@workstation:~$ cat /etc/ansible/hosts 
# This is the default ansible 'hosts' file.
#
# It should live in /etc/ansible/hosts
#
#   - Comments begin with the '#' character
#   - Blank lines are ignored
#   - Groups of hosts are delimited by [header] elements
#   - You can enter hostnames or ip addresses
#   - A hostname/ip can be a member of multiple groups

# Ex 1: Ungrouped hosts, specify before any group headers.

#green.example.com
#blue.example.com
#192.168.100.1
#192.168.100.10

# Ex 2: A collection of hosts belonging to the 'webservers' group

#[webservers]
#alpha.example.org
#beta.example.org
#192.168.1.100
#192.168.1.110

# If you have multiple hosts following a pattern you can specify
# them like this:

#www[001:006].example.com

# Ex 3: A collection of database servers in the 'dbservers' group

#[dbservers]
#
#db01.intranet.mydomain.net
#db02.intranet.mydomain.net
#10.25.1.56
#10.25.1.57

# Here's another example of host ranges, this time there are no
# leading 0s:

#db-[99:101]-node.example.com

it@workstation:~$ 

创建自己的主机清单

it@workstation:~$ vim ansible/hosts
it@workstation:~$ cat ansible/hosts
serverb

[web]
servera

[prod:children]
web

在该清单中,我们使用组嵌套,这个是前面示例中没有的,web 组是 prod 组的子组。

我们可以通过 ansible 命令查看主机清单内容:

it@workstation:~/ansible$ ansible web --list-host
SSH password: 
BECOME password[defaults to SSH password]: 
  hosts (1):
    servera
it@workstation:~/ansible$ ansible prod --list-host
SSH password: 
BECOME password[defaults to SSH password]: 
  hosts (1):
    servera

我们可以通过 ansible 命令来验证我们的主机清单文件

同时 Ansible 还有两个默认组:

all: 表示所有组件

ungrouped: 表示所有未分组的主机

it@workstation:~/ansible$ ansible all --list-host
SSH password: 
BECOME password[defaults to SSH password]: 
  hosts (2):
    serverb
    servera
it@workstation:~/ansible$ ansible ungrouped --list-host
SSH password: 
BECOME password[defaults to SSH password]: 
  hosts (1):
    serverb

* 在 Ansible 中,主机可以同时属于多个组。

Ansible 中存在一个隐藏的主机 localhost,即 ansible 本身,当主机指定为 localhost 时,ansible 会自动忽略掉 remote_user 配置;

运行 ansible 临时命令

Ansible 临时命令可以快速执行单个 ansible 任务,而不需编写 playbook,这对测试和排错很有帮助。如,你可以使用临时命令去检查,某个软件包在主机上的状态是什么,是否可用。

通过临时命令查看连接到远程主机的用户信息

it@workstation:~/ansible$ ansible servera -m shell -a "id"
SSH password: 
BECOME password[defaults to SSH password]: 
servera | CHANGED | rc=0 >>
uid=0(root) gid=0(root) groups=0(root)

* 由于我们没有配置免密(密钥),所以这里需要我们输入输入两次密码,一次时 ssh 连接的密码,一次是 sudo 提权的密码;

* 如果使用 ssh 密码方式运行 ansible,你还需要安装 sshpass,不然会有报错;

it@workstation:~/ansible$ ansible servera -m shell -a "id"
SSH password: 
BECOME password[defaults to SSH password]: 
servera | FAILED | rc=-1 >>
to use the 'ssh' connection type with passwords, you must install the sshpass program

安装 sshpass

it@workstation:~/ansible$ sudo apt install sshpass
免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

作者: 3182235786a

为您推荐

windows8

windows8

Windows 8 是微软公司于 2012 年推出的一款操作系统,因其独特的界面设计和功能受到广泛关注。本文将从 Win...
Windows 下载指南:获取最新版本的 Windows 操作系统

Windows 下载指南:获取最新版本的 Windows 操作系统

作为全球最受欢迎的操作系统之一,Windows 提供了丰富的功能和用户友好的界面。如果您想获取最新版本的 Windows...
windows资源管理器已停止工作

windows资源管理器已停止工作

Windows 资源管理器已停止工作是 Windows 操作系统中常见的一个问题,通常表现为资源管理器窗口无法正常打开或...
Windows 10 激活方法详解:轻松激活您的操作系统

Windows 10 激活方法详解:轻松激活您的操作系统

购买了全新的Windows 10操作系统后,如何激活它成为许多用户关注的问题。本文将为您详细介绍Windows 10的激...
windows10激活工具

windows10激活工具

Windows 10 激活工具是一款用于激活 Windows 10 操作系统的软件。通过使用激活工具,用户可以轻松地激活...

发表回复

返回顶部