很多时候新开了一个项目就要创建很多域名和虚拟主机。现在使用ansible批量创建虚拟主机,包括首次部署的安装,配置文件更新等功能,并结合上篇Tomcat的代理。
更多关注:http://www.mknight.cn/
一、目录结构
[root@localhost nginx]# tree
.
├── files
│ └── nginx-1.10.1.tar.gz
├── handlers
│ └── main.yml
├── tasks
│ ├── file.yml
│ ├── install.yml
│ └── main.yml
├── templates
│ ├── nginx.conf.j2
│ └── project.conf.j2
└── vars
└── main.yml
二、playbook
1、总调度文件
---
- name: 创建项目{{ project }} vhost
hosts: 192.168.1.7
gather_facts:no
roles:
- { role: nginx }
有种习惯就是先创建一个总的调度文件,相当于规划一个基本架构,然后再去填充内容,或许这种方式更简单易懂。
2、创建基本结构
[root@localhost ansible]# mkdir -pv roles/test_tomcat/{vars,tasks,files,templates,handlers}
在上一篇文章中简单使用了tasks/files和templates,这篇主要学习了handlers的用法。
3、tasks
main.yml
---
- include: install.yml #安装nginx
- include: file.yml #创建基本目录,像/var/www/html这样,有时候不一定要用,但是一定得有,不然就报错了
该task分为两部分,安装或者和初始化目录。本来想着加个tag,但是不是说每次都要装nginx,基本上都是执行一次就可以了。所以在后面的配置中加上了判断。
install.yml
---
- name: 判断nginx是否已经安装
stat: path={{ nginx_dir }}
register: reg
- name: copy nginx
unarchive: src=nginx-1.10.1.tar.gz dest=/usr/local
when: not reg.stat.exists
首先判断是否存在nginx的安装目录,在这里加个标签,如果存在,那么就不执行下面的解压。这里的软件包都存放在files目录,使用的是相对路径。
when 语句的作用是只有匹配指定条件,才执行 task,when 后面使用
jinja2的表达方式
* when: ansible_os_family == "Debian" #这里 ansible_os_family 变量
就是通过 setup 模块获取的
* when: ansible_os_family == "RedHat" and ansible_lsb.major_release|int >= 6 #支持 or 和 and 这些多条件表达式
## ansible 内置过滤器 failed、success、skipped、changed
- command: /bin/false
register: result
ignore_errors: True #忽略该 task 的错误
- command: /bin/cmd1
when: result|failed #通过结果判断上一个 task 如果执行失败,则执行该 task
- command: /bin/cmd2
when: result|success #通过结果判断上一个 task 如果执行成功,则执行
该 task
- command: /bin/cmd3
when: result|changed #通过结果判断上一个task如果执行成功且改变了主机状态,则执行该 task
file.yml
---
- name: 生成项目{{ project }} 目录
file: dest={{ document_root }} state=directory
- name: 生成DocumentRoot目录
file: dest={{ document_root }}/{{ item }} state=directory
with_items: "{{ dir }}"
- name: create project logs
file: dest=/data/logs/nginx/{{ servername }} state=directory
- name: 生成新项目{{ project }}的配置文件
template: src=nginx.conf.j2 dest={{ nginx_dir }}/conf/nginx.conf
notify:
- start nginx
- name: 生成新项目{{ project }}的配置文件
template: src=project.conf.j2 dest={{ nginx_dir }}/conf.d/{{ servername }}.conf
notify:
- reload nginx
首先创建该项目的目录,然后循环创建各个子域名和日志的目录。完成这些基本操作后就要生成配置文件,分别是虚拟主机和主配置文件。
notify检查配置文件有变动,如需重新加载nginx,就使用到了handlers。
4、handles
main.yml
- name: check nginx is running...
stat: dest=/var/run/nginx.pid
register: reg
- name: reload nginx
shell: '/usr/local/nginx/sbin/nginx -s reload'
when: reg.stat.exists
- name: start nginx
shell: '/usr/local/nginx/sbin/nginx '
when: not reg.stat.exists
检查pid文件是否存在,确定nginx是否已经启动,如果已经启动,那么就可以执行重启,否则执行启动。
大体介绍完啦,再看看变量部分
5、vars
---
project: car
document_root: /data/www/{{ project }}
servername: "new.com"
nginx_dir: /usr/local/nginx
dir:
- web
- admin
- wechat
module:
- {name: "web",port: "8410",servername: "web.baidu.com"}
- {name: "admin",port: "8411",servername: "admin.baidu.com"}
- {name: "wechat",port: "8412",servername: "wechat.baidu.com"}
这里没有啥可说的,都是看着配置。主要分为以下几个部分:
- 项目名称
- 主域名
- nginx安装目录
- 子域名、代理端口
最后就可以启动啦!
更多关注:http://www.mknight.cn/
--end