Ansible 배포 nginx

도 메 인 이름과 가상 호스트 를 새로 만 드 는 경우 가 많다.현재 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

둘째, 플레이 북
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 는 디 렉 터 리 를 설치 하거나 초기 화 하 는 두 부분 으로 나 뉜 다.태 그 를 추가 하려 고 했 는데 매번 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 뒤에 jinja 2 의 표현 방식 을 사용 합 니 다.
* 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

좋은 웹페이지 즐겨찾기