Contents
  1. 1. 简介
  2. 2. 构成与原理
  3. 3. 配置文件
  4. 4. 主机组
    1. 4.1. 主机文件的例子:
  5. 5. 模块
    1. 5.1. Commands 类模块
      1. 5.1.1. 测试raw模块
  6. 6. ansible 命令使用

简介


“Ansible is Simple IT Automation”——简单的自动化IT工具。这个工具的目标有这么几项:让我们自动化部署APP;自动化管理配置项;自动化的持续交付;自动化的(AWS)云服务管理。

1
2
#安装
sudo pip install ansible

构成与原理


本质上批量的在远程服务器上执行命令 。
那么fabric和ansible有什么差别呢?简单来说fabric像是一个工具箱,提供了很多好用的工具,用来在Remote执行命令,而Ansible则是提供了一套简单的流程,你要按照它的流程来做,就能轻松完成任务。这就像是库和框架的关系一样。

Asible基本组成 :

  • 核心:ansible
  • 核心模块(Core Modules):这些都是ansible自带的模块
  • 扩展模块(Custom Modules):如果核心模块不足以完成某种功能,可以添加扩展模块
  • 主机组(Host Inventory):定义ansible管理的主机
  • 插件(Plugins):完成模块功能的补充
  • 剧本(Playbooks):ansible的任务配置文件,将多个任务定义在剧本中,由ansible自动执行
  • 连接插件(Connectior Plugins):ansible基于连接插件连接到各个主机上,虽然ansible是使用ssh连接到各个
    主机的,但是它还支持其他的连接方法,所以需要有连接插件

配置文件


执行命令,ansible会按照如下配置文件位置的顺序,来搜寻配置文件。

1
2
3
4
* ANSIBLE_CONFIG (环境变量)
* ansible.cfg (当前目录下)
* .ansible.cfg (用户家目录下)
* /etc/ansible/ansible.cfg

主机组


定义ansible管理的主机,/etc/ansible/hosts 文件的格式与windows的ini配置文件类似:

1
2
3
4
5
6
7
8
9
10
mail.example.com

[webservers]
foo.example.com
bar.example.com

[dbservers]
one.example.com
two.example.com
three.example.com
  • 参数
    Inventory 参数的说明
    如同前面提到的,通过设置下面的参数,可以控制 ansible 与远程主机的交互方式,其中一些我们已经讲到过:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
ansible_ssh_host
将要连接的远程主机名.与你想要设定的主机的别名不同的话,可通过此变量设置.

ansible_ssh_port
ssh端口号.如果不是默认的端口号,通过此变量设置.

ansible_ssh_user
默认的 ssh 用户名

ansible_ssh_pass
ssh 密码(这种方式并不安全,我们强烈建议使用 --ask-pass 或 SSH 密钥)

ansible_sudo_pass
sudo 密码(这种方式并不安全,我们强烈建议使用 --ask-sudo-pass)

ansible_sudo_exe (new in version 1.8)
sudo 命令路径(适用于1.8及以上版本)

ansible_connection
与主机的连接类型.比如:local, ssh 或者 paramiko. Ansible 1.2 以前默认使用 paramiko.1.2 以后默认使用 'smart','smart' 方式会根据是否支持 ControlPersist, 来判断'ssh' 方式是否可行.

ansible_ssh_private_key_file
ssh 使用的私钥文件.适用于有多个密钥,而你不想使用 SSH 代理的情况.

ansible_shell_type
目标系统的shell类型.默认情况下,命令的执行使用 'sh' 语法,可设置为 'csh' 或 'fish'.

ansible_python_interpreter
目标主机的 python 路径.适用于的情况: 系统中有多个 Python, 或者命令路径不是"/usr/bin/python",比如 \*BSD, 或者 /usr/bin/python
不是 2.X 版本的 Python.我们不使用 "/usr/bin/env" 机制,因为这要求远程用户的路径设置正确,且要求 "python" 可执行程序名不可为 python以外的名字(实际有可能名为python26).与 ansible_python_interpreter 的工作方式相同,可设定如 ruby 或 perl 的路径...

主机文件的例子:


some_host ansible_ssh_port=2222 ansible_ssh_user=manager
aws_host ansible_ssh_private_key_file=/home/example/.ssh/aws.pem
freebsd_host ansible_python_interpreter=/usr/local/bin/python
ruby_module_host ansible_ruby_interpreter=/usr/bin/ruby.1.9.3

模块


模型类型如下:

  • Cloud Modules
  • Clustering Modules
  • Commands Modules
  • Crypto Modules
  • Database Modules
  • Files Modules
  • Identity Modules
  • Inventory Modules
  • Messaging Modules
  • Monitoring Modules
  • Network Modules
  • Notification Modules
  • Packaging Modules
  • Remote Management Modules
  • Source Control Modules
  • Storage Modules
  • System Modules
  • Utilities Modules
  • Web Infrastructure Modules
  • Windows Modules

Commands 类模块


包含如下子模块:

  • command - Executes a command on a remote node
  • expect - Executes a command and responds to prompts
  • raw - Executes a low-down and dirty SSH command
  • script - Runs a local script on a remote node after transferring it
  • shell - Execute commands in nodes.

测试raw模块


1
2
3
4
5
6
7
8
9
ansible vps -m raw  -a 'echo 1'
vps1 | SUCCESS | rc=0 >>
1

vps2 | SUCCESS | rc=0 >>
1

vps3 | SUCCESS | rc=0 >>
1

ansible 命令使用


1
ansible -i 主机组 -m 模块  -a '临时命令'
Contents
  1. 1. 简介
  2. 2. 构成与原理
  3. 3. 配置文件
  4. 4. 主机组
    1. 4.1. 主机文件的例子:
  5. 5. 模块
    1. 5.1. Commands 类模块
      1. 5.1.1. 测试raw模块
  6. 6. ansible 命令使用