当前位置:   article > 正文

ansible模块+playbook

ansible模块+playbook

scripts模块

script模块用于在远程机器上执行本地脚本。

  1. [root@bb ~]# vim test000.sh
  2. [root@bb ~]# cat test000.sh
  3. #!/bin/bash
  4. mkdir /tmp/three
  5. touch /tmp/three/test
  6. echo 'i am echo,at mttt' > /tmp/three/test
  7. echo 'well done'
  8. [root@bb ~]# sh test000.sh
  9. mkdir: 无法创建目录"/tmp/three": 文件已存在
  10. well done
# ansible group02 -m script -a './test000.sh'
  1. # ls /tmp/
  2. 111 three
  3. a.txt xxx
  4. a.txt.4331.2024-08-16@17:23:26~ xxx2
  5. systemd-private-18e460b4dc5b47458e28ad6b292e1a98-chronyd.service-ZPvmft

--用ansible搭建nfs服务

  1. [root@m0 ~]# ansible group02 -m file -a 'path=/static state=directory'
  2. [root@m0 ~]# ansible group02 -m file -a 'path=/static/test state=touch'
  3. [root@m0 ~]# ansible group02 -m command -a 'yum -y install nfs-utils'
  4. [root@s0 ~]# rpm -qa | grep nfs
  5. libnfsidmap-0.25-19.el7.x86_64
  6. nfs-utils-1.3.0-0.68.el7.2.x86_64
  7. [root@m0 ~]# ansible group02 -m yum -a 'name=rpcbind state=latest'
  8. [root@s0 ~]# rpm -qa | grep rpcbind
  9. rpcbind-0.2.0-49.el7.x86_64
  10. [root@m0 ~]# vim /etc/exports
  11. /static *(ro,rsync)
  12. [root@m0 ~]# ansible group02 -m copy -a 'src=/etc/exports dest=/etc/exports'
  13. [root@m0 ~]# ansible group02 -m service -a 'name=rpcbind state=started enabled=yes'
  14. [root@m0 ~]# ansible group02 -m service -a 'name=nfs state=started enabled=yes'
  15. [root@m0 ~]# yum -y install nfs-utils
  16. [root@m0 ~]# mkdir /nfs
  17. [root@m0 ~]# mount -t nfs 192.168.2.112:/static /nfs/
  18. [root@m0 ~]# mount -t nfs 192.168.2.111:/static /nfs/
  19. [root@m0 ~]# mount -t nfs 192.168.2.110:/static /nfs/
  20. mount.nfs: Operation not permitted
  21. [root@m0 ~]# df -h
  22. 文件系统 容量 已用 可用 已用% 挂载点
  23. /dev/mapper/centos-root 17G 4.3G 13G 26% /
  24. devtmpfs 476M 0 476M 0% /dev
  25. tmpfs 488M 0 488M 0% /dev/shm
  26. tmpfs 488M 7.7M 480M 2% /run
  27. tmpfs 488M 0 488M 0% /sys/fs/cgroup
  28. /dev/sr0 8.8G 8.8G 0 100% /mnt
  29. /dev/sda1 1014M 130M 885M 13% /boot
  30. tmpfs 98M 0 98M 0% /run/user/0
  31. 192.168.2.110:/static 17G 2.1G 15G 13% /nfs
  32. 192.168.2.112:/static 17G 2.1G 15G 13% /nfs
  33. 192.168.2.111:/static 17G 2.1G 15G 13% /nfs
  34. [root@s0 ~]# ls /static/
  35. test
  36. [root@s1 ~]# ls /static/
  37. test
  38. [root@s2 ~]# ls /static/
  39. test

playbook

playbook剧本是保存在控制机的yml文件

Playbook常⻅语法

hosts: ⽤于指定要执⾏任务的主机,其可以是⼀个或多个由冒号分隔主机组。

remote_user: ⽤于指定远程主机上的执⾏任务的⽤户 。

- hosts: group1 
remote_user: root
tasks: 任务列表, 按顺序执⾏任务.

如果⼀个host执⾏task失败, 整个tasks都会回滚, 修正playbook中的错误, 然后重新执⾏即可

tasks:
- name: ensure apache is at the latest version 
   yum: name=httpd,httpd-devel state=latest
- name: write the apache config file 
   copy: src=/etc/httpd/conf/httpd.conf
   dest=/etc/httpd/conf/httpd.conf
handlers: 类似task,但需要使⽤notify通知调⽤。

不管有多少个通知者进⾏了notify,等到play中的所有task执⾏完 成之后,handlers也只会被执⾏⼀次。

handlers最佳的应⽤场景是⽤来重启服务,或者触发系统重启操作,除此以外很少⽤到了。

notify: 
- restart apache
   - name: ensure apache is running (and enable it at boot)
      service: name=httpd state=started enabled=yes
handlers:
   - name: restart apache
      service: name=httpd state=restarted

--用剧本安装vsftpd

  1. # vim test001.yml
  2. ---
  3. - hosts: group02
  4. remote_user: root
  5. tasks:
  6. - name: 安装vsftpd
  7. yum: name=vsftpd state=latest
  1. # ansible-playbook ./test001.yml
  2. PLAY [group02] *********************************************************************
  3. TASK [Gathering Facts] *************************************************************
  4. ok: [192.168.2.111]
  5. ok: [192.168.2.110]
  6. ok: [other]
  7. TASK [安装vsftpd] ********************************************************************
  8. ok: [other]
  9. ok: [192.168.2.111]
  10. ok: [192.168.2.110]
  11. PLAY RECAP *************************************************************************
  12. 192.168.2.110 : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
  13. 192.168.2.111 : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
  14. other : ok=2 changed=0 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0

--用剧本卸载和安装vsftpd,且启动服务

  1. # vim test001.yml
  2. ---
  3. - hosts: group02
  4. remote_user: root
  5. tasks:
  6. - name: 卸载vsftpd
  7. yum: name=vsftpd state=absent
  8. - name: 安装vsftpd
  9. yum: name=vsftpd state=latest
  10. - name: 启动服务
  11. service: name=vsftpd state=started enabled=yes
  1. # ansible-playbook ./test001.yml
  2. PLAY [group02] *********************************************************************
  3. TASK [Gathering Facts] *************************************************************
  4. ok: [192.168.2.111]
  5. ok: [other]
  6. ok: [192.168.2.110]
  7. TASK [卸载vsftpd] ********************************************************************
  8. changed: [other]
  9. changed: [192.168.2.111]
  10. changed: [192.168.2.110]
  11. TASK [安装vsftpd] ********************************************************************
  12. changed: [other]
  13. changed: [192.168.2.111]
  14. changed: [192.168.2.110]
  15. TASK [启动服务] ************************************************************************
  16. changed: [192.168.2.111]
  17. changed: [192.168.2.110]
  18. changed: [other]
  19. PLAY RECAP *************************************************************************
  20. 192.168.2.110 : ok=4 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
  21. 192.168.2.111 : ok=4 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
  22. other : ok=4 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0

--剧本的格式

  1. ---
  2. - hosts: 组名/别名/ip/域名
  3. remote_user: root
  4. tasks:
  5. - name: 任务说明
  6. 模块: key0=value0
  7. service: name=vfstpd state=started enabled=yes
  8. - name: 修改配置文件
  9. command: sed ....
  10. notify:
  11. - abcdefg
  12. handler:
  13. - name: abcdefg
  14. service: name=vfstpd state=restarted

--将httpd的端口号80改为8080

  1. # vim test002.yml
  2. ---
  3. - hosts: group01
  4. remote_user: root
  5. tasks:
  6. - name: 将控制主机的repo文件复制到被控制主机
  7. copy: src=/etc/yum.repos.d dest=/etc/
  8. - name: 安装httpd
  9. yum: name=httpd state=present
  10. - name: 修改配置文件
  11. command: sed -i '/^Listen/s/80/8080/g' /etc/httpd/conf/httpd.conf
  12. - name: 修改默认的资源文件
  13. command: echo 'xxxxxxx' > /var/www/html/index.html
  14. - name: 启动httpd服务
  15. service: name=httpd state=started

--使用剧本在不同主机上同时创建不同的文件

  1. # vim /etc/ansible/hosts
  2. s1 ansible_ssh_host=192.168.1.17
  3. ansible_ssh_port=22 ansible_ssh_user=root
  4. ansible_ssh_pass=7
  5. s2 ansible_ssh_host=192.168.1.18
  6. ansible_ssh_port=22 ansible_ssh_user=root
  7. ansible_ssh_pass=7
  8. ---
  9. - hosts: s1
  10. remote_user: root
  11. tasks:
  12. - name: 创建一个文件
  13. file: path=/tmp/xxxxxx.txt state=touch
  14. - hosts: s2
  15. remote_user: root
  16. tasks:
  17. - name: 也创建一个文件
  18. file: path=/tmp/yyyyy.txt state=touch

--使用剧本搭建nfs服务

  1. # vim test003.yml
  2. ---
  3. - hosts: s1
  4. remote_user: root
  5. tasks:
  6. - name: 安装nfs-utils
  7. yum: name=nfs-utils state=present
  8. - name: 安装rpcbind
  9. yum: name=rpcbind state=present
  10. - name: 创建共享目录
  11. file: path=/static state=directory
  12. - name: 配置文件
  13. shell: echo '/static *(ro,rsync)' > /etc/exports
  14. - name: 启动服务
  15. service: name=nfs state=started enabled=yes
  16. - name: 启动服务rpcbind
  17. service: name=rpcbind state=started enabled=yes
  18. - hosts: s2
  19. remote_user: root
  20. tasks:
  21. - name: 安装nfs-utils
  22. yum: name=nfs-utils state=latest
  23. - name: 创建挂载目录
  24. file: path=/nfs state=directory
  25. - name: 挂载nfs文件
  26. command: mount -t nfs 192.168.1.17:/static /nfs

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/1011173
推荐阅读
  

闽ICP备14008679号