zoukankan      html  css  js  c++  java
  • Ansible——handlers与notify

    handlers

    当我们修改了配置文件后,需要重启服务时,可以利用handlers中的tasks。避免不必要的重启。只要等配置文件修改的时候,才会触发handlers。

    notify

    handlers中的任务无法直接使用,需要通过notify来调用handlers。

    注意:

    1. 调用时根据handlers的名字来确认。所以一个playbook中,handlers的名字一定是唯一的。
    2. notify用于在每个play的最后被触发。无论通过notify调用几次handlers。系统都会在所有play完成后才执行一次handlers中的任务。

    实例:

    题目:修改apache配置文件后才重启httpd服务。如果没有改变则不重启。

    1. 执行playbook发现没有执行handlers,因为模板中的变量并没有发生变化。从而不会触发handlers
    [root@localhost project]# vim ceshi2.yml
    ---
    - name: handlers
      vars_files:
        files/vars
      hosts: 192.168.190.133
      tasks:
        - template:
            src: template/vhosts.j2
            dest: /etc/httpd/conf.d/vhosts.conf
          notify:
            restart apache
      handlers:
        - name: restart apache
          service:
            name: httpd
            state: restarted
    
    TASK [template] ****************************************************************************************
    ok: [192.168.190.133]
    
    PLAY RECAP *********************************************************************************************
    192.168.190.133            : ok=2    changed=0    unreachable=0    failed=0    skipped=0    rescued=0
    
    1. 修改变量的值
    [root@localhost project]# vim files/vars   修改外部变量文件中的端口号 从81变为9528
    port_name1: 80
    port_name2: 9528
    service1_name: web_1
    service2_name: web_2
    
    1. 再次执行playbook,发现handlers成功执行
    [root@localhost project]# ansible-playbook ceshi2.yml 
    
    ......
    RUNNING HANDLER [restart apache] ***********************************************************************
    changed: [192.168.190.133]
    
    PLAY RECAP *********************************************************************************************
    192.168.190.133            : ok=3    changed=2    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
    

    4.查看被控机的端口号是否改变

    [root@localhost project]# ansible 192.168.190.133 -a 'ss -antl' -i inventory 
    192.168.190.133 | CHANGED | rc=0 >>
    State    Recv-Q    Send-Q        Local Address:Port        Peer Address:Port    
    LISTEN   0         128                 0.0.0.0:22               0.0.0.0:*       
    LISTEN   0         25                  0.0.0.0:514              0.0.0.0:*       
    LISTEN   0         128                       *:80                     *:*       
    LISTEN   0         128                    [::]:22                  [::]:*       
    LISTEN   0         128                       *:9528                   *:*        80与9528端口都被开启
    LISTEN   0         25                     [::]:514                 [::]:* 
    
    
    
  • 相关阅读:
    TDirectory.GetParent获取指定目录的父目录
    TDirectory.GetLogicalDrives获取本地逻辑驱动器
    获取设置目录创建、访问、修改时间
    TDirectory.GetLastAccessTime获取指定目录最后访问时间
    TDirectory.GetDirectoryRoot获取指定目录的根目录
    「洛谷P1262」间谍网络 解题报告
    「洛谷P1198」 [JSOI2008]最大数 解题报告
    「洛谷P3931」 SAC E#1
    「UVA1328」「POJ1961」 Period 解题报告
    「博客美化」I 页面的CSS
  • 原文地址:https://www.cnblogs.com/sawyer95/p/13622055.html
Copyright © 2011-2022 走看看