1.Ansible介绍

1)Ansible:Ansible的核心程序

2)Host Inventory:(默认路径:/etc/ansible/hosts)记录了每一个由Ansible管理的主机信息,信息包括ssh端口,root帐号密码,ip地址等等。可以通过file来加载,可以通过CMDB加载

3)Playbooks:YAML格式文件,多个任务定义在一个文件中,使用时可以统一调用,“剧本”用来定义那些主机需要调用那些模块来完成的功能.

4)Core Modules:Ansible执行任何管理任务都不是由Ansible自己完成,而是由核心模块完成;Ansible管理主机之前,先调用core Modules中的模块,然后指明管理Host Lnventory中的主机,就可以完成管理主机。

5)Custom Modules:自定义模块,完成Ansible核心模块无法完成的功能,此模块支持任何语言编写。

6)Connection Plugins:连接插件,Ansible和Host通信使用

2.ansible三种调用方式

1)hoc:命令行

2)playbooks:剧本/脚本

3)roles:角色

3.ansible配置客户端

1)安装:

yum install epel-release

yum install anisble

2)配置客户端

(1)server:ssh-keygen

scp id_rsa.pub root@192.168.254.25:/root/.ssh/authorized_keys

(2)vim /etc/ansible/hosts

ansible_ssh_user=root ansible_ssh_port=22 ansible_ssh_pass=root

4.ansible默认并发数:5

ansible -f 修改

5.ansible常用命令

ansible-doc -l #查看支持的模块

ansible-doc -s MODEL_NAME #查看模块用法

ansible命令应用基础

ansible all -m ping #查看client端是否正常ping通

ansible webserver -m setup #查看客户端信息

ansible webserver -m copy -a 'src=/root/git_test/code.txt dest=/root/test' #copy文件到cient端

ansible webserver -m user -a "name=test state=present" #创建test用户

ansible webserver -m user -a "name=test state=absent" #删除test用户

ansible webserver -m yum -a ‘name=epel-relese state=latest‘ #yum安装

ansible webserver -m service -a ‘name=httpd state=stopped enabled=no‘ #停止httpd服务

ansible webserver -m script -a ‘/tmp/test.sh‘ #运行脚本

ansible webserver -m command 'date' #查看时间

6.连接报错解决

使用ansible连接主机时出现Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this.  Please add this host's fingerprint to your known_hosts file to manage this host.报错则把/etc/ansible/ansible.cfg配置文件中host_key_checking = False行注释打开

7.playbooks

1)

如果用模块形式一般有幂等性,如果用shell或者command没有幂等性

  playbooks相当于是shell脚本,可以把要执行的任务写到文件当中,一次执行,方便调用

  tasks:一个task相当于是一个play

  varibles: 变量,一定定义,多处调用

  template:模板,可以区分不同主机的特点

  handlers:触发器,依赖于前一个任务,前一个任务如果执行改变,那么就会触发handlers

2)定义playbook任务

- hosts: testhosts  -与关键字之间必须有空格

  remote_user: root   与hosts对齐

  vars:  定义变量

  - file: httpd.conf

  tasks: 定义任务

  - name: copy httpd.conf  任务名

    copy: src=/root/{{ file }} dest=/etc/httpd/conf/{{ file }}  调用copy模块

  - name: restart httpd  定义多个任务

    service: name=httpd state=restarted

3)定义变量

在yaml文件当中传入模板变量

{{变量名}}

第一种:

vars:

- file: httpd.conf

第二种:

vim /etc/ansible/hosts

[testhosts:vars]

file=httpd.conf

packages=tree

第三种

执行playbook文件时候给与变量 --extra-vars

ansible-playbook test.yaml --extra-vars "touch_file=test.txt"

4)注册变量:

register注册变量:把date命令输出的结果赋予给date_output

- hosts: 192.168.254.10

  remote_user: root

  tasks:

  - name: get date

    command: date

    register: date_output

  - name: echo date_output

    shell: "echo {{date_output.stdout}}>/tmp/a.txt"

5)when语句

when条件语句:可以根据setup显示出客户端信息为依据来判断

- hosts: 192.168.254.12

  remote_user: root

  tasks:

  - name: echo date_output

    shell: "touch /tmp/a.txt"

    when: ansible_distribution=='CentOS' and ansible_distribution_major_version=='8'

6)异常处理

ignore_errors:如果任务出错,直接跳过,不会影响其他任务

- hosts: 192.168.254.12

  remote_user: root

  tasks:

  - name: add several user

    command: touch1 a.txt

    ignore_errors: yes

7)循环语句:

第一种:

{{ item }}:循环创建

- hosts: 192.168.254.12

  remote_user: root

  tasks:

  - name: add many users

    user: name={{ item }} state=present

    with_items:

    - user1

    - user2

    - user3

    - user4

第二种:

- hosts: 192.168.254.12

  remote_user: root

  tasks:

  - name: add several user

    user: name={{item.name}} state=present groups={{item.groups}}

    with_items:

    - { name: 'testuser1', groups: 'wheel'}

    - { name: 'testuser2', groups: 'root'}

8)触发器:

handlers:如果执行的任务被改变那么会触发handlers的任务

- hosts: testhosts

  remote_user: root

  tasks:

  - name: copy httpd.conf

    copy: src=/root/httpd.conf dest=/etc/httpd/conf/httpd.conf

    notify:

    - restarted httpd service

  handlers:

  - name: restarted httpd service

    service: name=httpd state=restarted

9)模板拷贝:

template,用来区分不同客户端上的特性

- hosts: testhosts

  remote_user: root

  tasks:

  - name: copy httpd.conf

    template: src=/root/httpd.conf dest=/etc/httpd/conf/httpd.conf  将copy改为template

    notify:

    - restarted httpd service

  handlers:

  - name: restarted httpd service

    service: name=httpd state=restarted

将要修改的文件内的区域改为变量,如把Listen 80 改为Listen {{ port }}

在组文件中添加变量的值

[testhosts]

192.168.52.234·······port=1111

192.168.52.235·······port=2222

8.roles:角色

1)创建目录

[root@localhost ~]# tree playbooks/

playbooks/  根据需要命名

├── roles

│   ├── dbservers  根据需要命名

│   │   ├── files  存放要复制的文件

│   │   │   └── httpd.conf

│   │   ├── handlers  存放触发器任务文件

│   │   │   └── main.yaml

│   │   ├── tasks  存放任务文件

│   │   │   └── main.yaml

│   │   ├── templates  存放模板文件

│   │   │   └── httpd.conf

│   │   └── vars  存放变量定义文件

│   │       └── main.yaml

│   └── webservers

│       ├── files

│       ├── handlers

│       ├── tasks

│       ├── templates

│       └── vars

└── site.yaml  主调用文件

编辑主调用文件:

vim playbooks/site.yaml

- hosts: webservers

  remote_user: root

  roles:

  - webservers

  - dbservers

2)按照playbooks语句进行编辑

ansible自动化运维管理工具的更多相关文章

  1. Ansible 自动化运维管理工具

    Ansible 自动化运维管理工具 1.Ansible概述 2.Ansible部署 3.Ansible模块 1.Ansible概述: Ansible是一个基于Python开发的配置管理和应用部署工具, ...

  2. Linux运维之Ansible自动化运维管理工具

    Ansible简介:Ansible是一个简单高效的自动化运维管理工具,用Python开发,能大批量管理N多台机器,可以并发的在多台机器上部署应用.安装软件.执行命令.配置和编排任务.后面会提到批量安装 ...

  3. Ansible-Tower自动化运维管理环境 - 安装破解记录

    公司中实现运维自动化的架构中主要用到ansible,ansible脚本在部署服务器指令行中显得不太直观.Ansible-Tower(之前叫做awx)是将ansible的指令界面化,简明直观,简单易用. ...

  4. opsmanage 自动化运维管理平台

    关闭防火墙.selinux 更换阿里云 yum源 依赖环境 yum install -y epel-releaseyum install vim net-tools nmon htop rsync t ...

  5. Ansible自动化运维工具使用

    概述本文描述自动化运维工具 Ansible 的安装及基础使用方法,包含: Centos 下的安装主机配置Ad-Hoc command(命令行执行)Playbook (任务剧本)Ansible 和 Sa ...

  6. Ansible自动化运维工具-上

    [Ansible特点] 1)Ansible与saltstack均是基于Python语言开发的 2)安装使用简单,基于不同插件和模块实现各种软件,平台,版本的管理以及支持虚拟容器多层级的部署 3)不需要 ...

  7. Ansible 自动化运维工具

    Ansible 自动化运维工具 Ansible是什么? Ansible是一个"配置管理工具"也是一个"自动化运维工具" Ansible 作用: Ansible是 ...

  8. Ansible自动化运维工具的使用

                                 Ansible自动化运维工具的使用       host lnventory 管理主机 ip  root账号密码 ssh端口 core mod ...

  9. Ansible自动化运维工具及其常用模块

    Ansible自动化运维工具及其常用模块 目录 Ansible自动化运维工具及其常用模块 一.Ansible简介 1. Ansible概述 2. Ansible作用 3. Ansible的工作模块 4 ...

随机推荐

  1. k8s管理pod资源对象(上)

    一.容器于pod资源对象 现代的容器技术被设计用来运行单个进程时,该进程在容器中pid名称空间中的进程号为1,可直接接收并处理信号,于是,在此进程终止时,容器即终止退出.若要在一个容器中运行多个进程, ...

  2. JAVA》eclipse——(一)jdk的下载、安装与配置

    http://www.cnblogs.com/best/p/6275334.html 注:这是一位老师的博客随笔链接,不是我的,里面有详细的说明,分享给大家,如果想看其他关于IT的知识,可以访问 ht ...

  3. hive的外部表

    最近买了一本hive看,发现书中有一个错误: 我的验证如下: 1.外部表数据存在自己表所属的目录下 2.还发现了 CTAS 操作不能 建立外部表

  4. Python3数据结构汇总

    字符 列表 元组 集合 字典 能否被索引或切片 能 能 能 否 否 元素能否被编辑 否 能 否 能 能 增 1.list.append(x):把一个元素添加到列表的结尾: 2.list.insert( ...

  5. 什么是ASCII码?

    ㈠定义 ASCII ((American Standard Code for Information Interchange): 美国信息交换标准代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现 ...

  6. json代码——json序列化,json-parse,JSONstringify格式化输出,虚拟DOM

    JS对象转为类似json的字符串,对象->字符串叫序列化,字符串->对象      是反序列化 ㈠json序列化 <script> var shy = new Object() ...

  7. HTML的<form>表单标签

    表单 HTML 表单用于搜集不同类型的用户输入. ㈠Form标签 ⑴form标签简介 在HTML中,如果创建一个表单,就把各种表单标签放在<form></form>标签内部.我 ...

  8. python起步--windows系统下安装python解释器和PyCharm

    参考教程: 1)https://www.runoob.com/w3cnote/pycharm-windows-install.html 2)https://blog.csdn.net/c_shell_ ...

  9. Spring CommonsMultipartResolver 上传文件

    转:http://yanglei008.iteye.com/blog/246920 ...Controller...{ // 创建一个通用的多部分解析器 CommonsMultipartResolve ...

  10. JDK_API剖析之java.util包

    Java的实用工具类库java.util包.在这个包中,Java提供了一些实用的方法和数据结构. 一.接口 1.Collection<E> 接口 自1.2开始有 继承Iterable< ...