IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> ansible流程控制playbook复用include -> 正文阅读

[系统运维]ansible流程控制playbook复用include

playbook复用include

ansible_prokect目录结构

在这里插入图片描述

nginx目录中的tasks

在这里插入图片描述

拆分nginx安装及配置tasks

vim config_nginx.yml
- name: push config_nginx
  copy:
    src: ./nginx.conf
    dest: /etc/nginx/nginx.conf
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

- name:
  copy:
    src: ./blog.conf
    dest: /etc/nginx/conf.d
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

- name: create code directory
  file:
    path: /code
    state: directory
    owner: www
    group: www
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

vim install_nginx.yml 
- name: install nginx
  yum:
    name: nginx
    state: present
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

vim start_nginx.yml 
- name: start nginx
  service: 
    name: nginx
    state: started
    enabled: yes
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

vim unzip_nginx.yml 
- name: unzip wordpress
  unarchive:
    src: ./wordpress-5.7.2-zh_CN.tar.gz
    dest: /code
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

php目录中的tasks

在这里插入图片描述

拆分php-fpm安装及配置tasks

vim config_php.yml 
- name: configure php conf
  copy:
    src: ./www.conf
    dest: /etc/php-fpm.d
    owner: root
    group: root
    mode: 0644
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

vim install_php.yml 
- name: install php-fpm server
  shell: 'rpm -Uvh /tmp/*.rpm'
  ignore_errors: yes
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

vim start_php
- name: start php-fpm server
  service:
    name: php-fpm
    state: started
    enabled: yes
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

vim unzip_php.yml 
- name: unzaip php
  unarchive:
    src: ./php.tgz
    dest: /tmp
  when: ansible_hostname == 'web01' or ansible_hostname == 'web02'

优化tasks

vim youhua.yml
- name: stop firewalld server
  service:
    name: firewalld
    state: stopped

- name: disabled selinux
  selinux:
    state: disabled

- name: create www group
  group:
    name: www
    gid: 666
    state: present

- name: create www user
  user:
    name: www
    uid: 666
    group: '666'
    shell: /sbin/nologin
    create_home: no
    state: present

入口文件task.yml

vim task.yml
- hosts: all
  tasks:
    - include_tasks: youhua/youhua.yml
    - include_tasks: nginx/install_nginx.yml
    - include_tasks: nginx/config_nginx.yml
    - include_tasks: nginx/unzip_nginx.yml
    - include_tasks: php/unzip_php.yml
    - include_tasks: php/install_php.yml
    - include_tasks: php/config_php.yml
    - include_tasks: nginx/start_nginx.yml
    - include_tasks: php/start_php.yml
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-08-17 15:47:33  更:2021-08-17 15:48:22 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 9:56:51-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码