Ansible剧本

#Ansible剧本

文章目录


##一、部署web服务器
要求
1、部署yum仓库
2、安装httpd
3、新建/www目录
4、在/www中新建index.html,内容为my name is chenyu(chenyu为你们自己名字的全拼)
5、该web服务器的DocumentRoot为/www
5、实现在ansible中能够使用http://node1访问到该网页内容

编写剧本


[student@server ansible]$ cat httpd.yml 
---
- name: web station 
  hosts: node1
  tasks: 
    - name: mount dev
      mount: 
        src: /dev/cdrom
        path: /mnt
        fstype: iso9660
        state: mounted

    - name: yum_repo
      yum_repository: 
        file: server
        name: aa
        description: aa
        baseurl: file:///mnt/BaseOS
        enabled: yes
        gpgcheck: no
        
    - name: yum_repo2
      yum_repository: 
        file: server
        name: bb
        description: bb
        baseurl: file:///mnt/AppStream
        enabled: yes
        gpgcheck: no

    - name: install httpd
      yum: 
       name: httpd
       state: latest

    - name: /www
      file: 
        path: /www
        state: directory

    - name: /www/index.html
      file: 
        path: /www/index.html
        state: touch

    - name: lineinfile
      lineinfile: 
        path: /www/index.html
        line: "my name is  humingyang"

    - name: install semanage
      yum: 
        name: policycoreutils-python-utils
        state: latest

    - name: firewalld httpd
      firewalld: 
        rich_rule: rule family=ipv4 source address=192.168.100.0/24 service name=http accept
        permanent: yes
        immediate: yes
        state: enabled

    - name: httpd_sys_content_t
      sefcontext: 
        target: /www/index.html
        setype: httpd_sys_content_t
        state: present

    - name: restorecon
      command: restorecon -Rv /www/index.html

    - name: httpd.conf
      replace: 
        path: /etc/httpd/conf/httpd.conf
        regexp: 'DocumentRoot "/var/www/html"'
        replace: 'DocumentRoot "/www"'

    - name: httpd1.conf
      replace: 
        path: /etc/httpd/conf/httpd.conf
        regexp: <Directory "/var/www">
        replace: <Directory "/">

    - name: start httpd
      service: 
        name: httpd
        state: restarted
        enabled: yes		

执行

[student@server ansible]$ ansible-playbook httpd.yml 

PLAY [web station] *****************************************************************************

TASK [Gathering Facts] *************************************************************************
ok: [node1]

TASK [mount dev] *******************************************************************************
ok: [node1]

TASK [yum_repo] ********************************************************************************
ok: [node1]

TASK [yum_repo2] *******************************************************************************
ok: [node1]

TASK [install httpd] ***************************************************************************
ok: [node1]

TASK [/www] ************************************************************************************
ok: [node1]

TASK [/www/index.html] *************************************************************************
changed: [node1]

TASK [lineinfile] ******************************************************************************
ok: [node1]

TASK [install semanage] ************************************************************************
changed: [node1]

TASK [firewalld httpd] *************************************************************************
ok: [node1]

TASK [httpd_sys_content_t] *********************************************************************
changed: [node1]

TASK [restorecon] ******************************************************************************
changed: [node1]

TASK [httpd.conf] ******************************************************************************
changed: [node1]

TASK [httpd1.conf] *****************************************************************************
changed: [node1]

TASK [start httpd] *****************************************************************************
changed: [node1]

PLAY RECAP *************************************************************************************
node1                      : ok=15   changed=7    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   

验证

[student@server ansible]$ curl 192.168.100.10
my name is humingyang


[root@node1 www]# ll -Z 
total 8
-rw-r--r--. 1 root root unconfined_u:object_r:httpd_sys_content_t:s0 29 Oct 25 15:34 html
-rw-r--r--. 1 root root unconfined_u:object_r:httpd_sys_content_t:s0 23 Oct 25 16:55 index.html

##二、使用notify…handlers
要求
1、写一个剧本runtime.yml,只对node1操作
2、创建用户aa,该用户不能用于登录,家目录/www
3、在/www创建一个文件html
4、每次执行该剧本时,将系统的当前时间输入到html文件中。
5、如果html中的时间发生变化,那么创建/tmp/kk的文件
编写

[student@server ansible]$ cat runtime.yml 
---
- name: time
  hosts: node1
  tasks: 
    - name: create user
      user: 
        name: aa 
        shell: /sbin/nologin
        home: /www

    - name: create file
      file: 
        path: /www/html
        state: touch

    - name: date
      shell: date >/www/html
      notify: 
        - kk

  handlers: 
    - name: kk
      file: 
        path: /tmp/kk
        state: touch  

执行

[student@server ansible]$ ansible-playbook runtime.yml 

PLAY [time] ************************************************************************************

TASK [Gathering Facts] *************************************************************************
ok: [node1]

TASK [create user] *****************************************************************************
changed: [node1]

TASK [create file] *****************************************************************************
changed: [node1]

TASK [date] ************************************************************************************
changed: [node1]

RUNNING HANDLER [kk] ***************************************************************************
changed: [node1]

PLAY RECAP *************************************************************************************
node1                      : ok=5    changed=4    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值