思路:先在一台机器上编译安装好 Nginx,打包,然后通过 Ansible 下发

[root@localhost ~]$ cd /etc/ansible/
[root@localhost ansible]$ mkdir nginx_install
[root@localhost ansible]$ cd nginx_install/
[root@localhost nginx_install]$ mkdir -p roles/{common,install}/{handlers,files,meta,tasks,templates,vars}
[root@localhost nginx_install]$ tree ./
./
└── roles # 定义角色目录,common为一些准备操作,install为安装nginx的操作
├── common
│ ├── files # 存放安装包的目录
│ ├── handlers # 存放当发生变更是要执行的操作,如修改配置文件、重启服务等
│ ├── meta # 存放说明信息,如说明角色依赖等信息
│ ├── tasks # 存放核心的任务配置文件
│ ├── templates # 存放配置文件、启动文件等模板文件
│ └── vars # 用来定义变量的目录
└── install
├── files
├── handlers
├── meta
├── tasks
├── templates
└── vars

编译安装 Nginx :

[root@localhost ~]$ cd /usr/local/src/
[root@localhost ~]$ yum install -y pcre-devel zlib-devel gcc gcc-c++
[root@localhost src]$ wget http://nginx.org/download/nginx-1.12.2.tar.gz
[root@localhost src]$ tar xf nginx-1.12.2.tar.gz
[root@localhost src]$ cd nginx-1.12.2/
[root@localhost nginx-1.12.2]$ ./configure --prefix=/usr/local/nginx
[root@localhost nginx-1.12.2]$ make && make install
[root@localhost nginx-1.12.2]$ vim /etc/init.d/nginx # https://coding.net/u/aminglinux/p/aminglinux-book/git/blob/master/D15Z/etc_init.d_nginx
[root@localhost nginx-1.12.2]$ chmod 755 /etc/init.d/nginx
[root@localhost nginx-1.12.2]$ chkconfig --add nginx
[root@localhost nginx-1.12.2]$ chkconfig nginx on
[root@localhost nginx-1.12.2]$ cd /usr/local/nginx/conf/
[root@localhost conf]$ mv nginx.conf nginx.conf.bak
[root@localhost conf]$ vim nginx.conf # https://coding.net/u/aminglinux/p/aminglinux-book/git/blob/master/D15Z/nginx.conf
[root@localhost conf]$ /usr/local/nginx/sbin/nginx -t
[root@localhost conf]$ /etc/init.d/nginx start
[root@localhost conf]$ netstat -tunlp | grep 80

打包:

[root@localhost ~]$ cd /etc/ansible/nginx_install/roles/install/files/
[root@localhost files]$ tar czf nginx.tar.gz --exclude "nginx.conf" --exclude "vhost" /usr/local/nginx

拷贝配置文件和启动文件到模板目录:

[root@localhost ~]$ cp /usr/local/nginx/conf/nginx.conf /etc/ansible/nginx_install/roles/install/templates/
[root@localhost ~]$ cp /etc/init.d/nginx /etc/ansible/nginx_install/roles/install/templates/

安装一些依赖包:

[root@localhost ~]$ cd /etc/ansible/nginx_install/roles/
[root@localhost roles]$ cat common/tasks/main.yml
- name: Install initializtion require software
yum: name={{ item }} state=installed
with_items:
- zlib-devel
- pcre-devel

定义一些变量:

[root@localhost roles]$ cat install/vars/main.yml
nginx_user: www
nginx_port: 80
nginx_basedir: /usr/local/nginx

把用到的文档拷贝到目标机器:

[root@localhost roles]$ cat install/tasks/copy.yml
- name: Copy Nginx Software
copy: src=nginx.tar.gz dest=/tmp/nginx.tar.gz owner=root group=root - name: Uncompression Nginx Software
shell: tar zxf /tmp/nginx.tar.gz -C /usr/local/ - name: Copy Nginx Start Script
template: src=nginx dest=/etc/init.d/nginx owner=root group=root mode=0755 - name: Copy Nginx Config
template: src=nginx.conf dest={{ nginx_basedir }}/conf/ owner=root group=root mode=0644

创建用户 ,启动服务 ,删除压缩包:

[root@localhost roles]$ cat install/tasks/install.yml
- name: Create Nginx User
user: name={{ nginx_user }} state=present createhome=no shell=/sbin/nologin - name: Start Nginx Service
shell: /etc/init.d/nginx start - name: Add Boot Start Nginx Service
shell: chkconfig --level 345 nginx on - name: Delete Nginx compression files
shell: rm -rf /tmp/nginx.tar.gz

创建 main.yml ,去调用 copy.yml 和 install.yml:

[root@localhost roles]$ cat install/tasks/main.yml
- include: copy.yml
- include: install.yml

最后,创建总入口文件:

[root@localhost ~]$ cat /etc/ansible/nginx_install/install.yml
---
- hosts: 192.168.119.134
remote_user: root
gather_facts: True
roles:
- common
- install

执行 yaml 安装 Nginx:

[root@localhost ~]$ ansible-playbook /etc/ansible/nginx_install/install.yml 

Ansible 使用 Playbook 安装 Nginx的更多相关文章

  1. ansible-初始playbook安装nginx

    1. ansible-初始playbook安装nginx 1) 创建一个ansible存放路径 1 [root@test-1 scripts]# mkdir -p /ansible/nginx/{co ...

  2. ansible roles实践——安装nginx

    1.创建roles 在/etc/ansible/roles目录下 1.1 手动创建需要的目录 1.2 使用命令创建,用不到的目录可以创建为空目录,但不可以不创建. 创建目录[root@master] ...

  3. Ansible 使用 Playbook 管理 Nginx 配置文件

    前面我们已经安装完 Nginx,但是在日常维护中经常需要修改配置文件,并重新加载配置文件,因此来写一个管理 Nginx 配置文件的 Playbook: [root@localhost ~]$ mkdi ...

  4. Ansible 之Playbook

    ansbile playbook是一系列ansible命令的集合,利用yaml 语言编写,playbook命令根据自上而下的顺序依次执行.同时,playbook开创了很多特性,它可以允许你传输某个命令 ...

  5. Linux centosVMware 自动化运维Ansible介绍、Ansible安装、远程执行命令、拷贝文件或者目录、远程执行脚本、管理任务计划、安装rpm包/管理服务、 playbook的使用、 playbook中的循环、 playbook中的条件判断、 playbook中的handlers、playbook实战-nginx安装、管理配置文件

    一.Ansible介绍 不需要安装客户端,通过sshd去通信 基于模块工作,模块可以由任何语言开发 不仅支持命令行使用模块,也支持编写yaml格式的playbook,易于编写和阅读 安装十分简单,ce ...

  6. ansible的playbook进行yum批量安装nginx最新版本

    环境:centos7 版本:nginx最新版本 软件: ansible 作用: 进行批量执行不同机器上,进行安装nginx版本 检查脚本是否正确: [root@ansible-test ansible ...

  7. ansible案例-安装nginx

    一.创建目录: mkidr -p playbook/{files,templates}   二.自定义index.html文件 $ vim playbook/templates/index.html. ...

  8. 在CentOS7.6上安装自动化运维工具Ansible以及playbook案例实操

    前言 Ansible是一款优秀的自动化IT运维工具,具有远程安装.远程部署应用.远程管理能力,支持Windows.Linux.Unix.macOS和大型机等多种操作系统. 下面就以CentOS 7.6 ...

  9. playbook实现nginx安装

    1. 先在一台机器上编译安装好nginx,然后打包 tar -zcvf nginx.tar.gz /usr/local/nginx --exclude=conf/nginx.conf --exclud ...

随机推荐

  1. 命令行模式启动VMWare虚拟机

    工作中使用到在centos中安装vmware Workstation部署虚拟机,以前都是使用图形界面启动虚拟机,由此要调整VNC的分辨率大小,重启VNC Server后所有虚拟机都关闭了.事后分析可能 ...

  2. matlab中生成随机数的相关知识

    randperm()函数: 功能:用于生成从1到N的随机整数,并且没有重复,它本质上是一个随机排序的函数: 用法:1.  randperm(n)     随机生成从1到n的不重复的整数: 2. ran ...

  3. Aizu_Insertion Sort

    原题链接:https://vjudge.net/problem/Aizu-ALDS1_1_A 题目描述 Write a program of the Insertion Sort algorithm ...

  4. 在js中 把 json对象转化为String对象的方法

    方法1: 使用js的扩展方法 ** * json对象转字符串形式 */ function json2str(o) { var arr = []; var fmt = function(s) { if ...

  5. Mac Terminal菜鸟篇之使用unrar解压rar文件

    安装: $ brew install unrar 使用: $ unrar x Httpclient_jar.rar $ unrar e Httpclient_jar.rar # 或者用参数e也行

  6. 如何在linux中批量建立用户并设置随机密码

    Ubuntu是基于linux的免费开源操作系统,同时也是真正意义上的“多任务多用户”操作系统,既然是多用户系统,自然就涉及到创建多个用户的问题.同时由于Ubuntu系统中的root用户具有最高权限,无 ...

  7. mysql 字段区分大小写

    默认情况下, mysql中的字段是不区分大小写的,所以"aa"与"AA"被认为是一样的. 那么有些特殊情况下,我们希望它区分大小写呢,这时应该怎么办,说出来其实 ...

  8. 软渲染 SoftRender

    弄了这几年OpenGL对管线还是算比较熟悉,写起来也比较顺,不过每个顶点都要经过一堆变换,着实感到效率的重要.(矩阵乘顶点没有SSE加速啊)装个B,半天的成果..(主要很多东西都写好了直接拿来) // ...

  9. iOS: 动画更换 UIImageView 的 Image

    #import <QuartzCore/QuartzCore.h> ... imageView.image = [UIImage imageNamed:(i % ) ? @"3. ...

  10. Making ARC and non-ARC files play nice together

    From Codeography If you want to exclude a file from being compiled with ARC you can do so by setting ...