批量管理服務器的工具
無需部署agent,經過ssh進行管理
流行的自動化運維工具:https://github.com/ansible/ansiblevue
可視化運維(主要用在可視化部署)
持續構建,能夠和git,svn結合
可結合ssh實現可視化運維
可結合ansible實現可視化運維python
Centos7.5(yum -y install net-tools vim)
關閉防火牆(systemctl stop firewalld,systemctl disable firewalld)
關閉selinuxlinux
安裝支持包
[root@ansibel ~]# yum -y install lrzsz vim net-tools gcc gcc-c++ ncurses ncurses-d
evel unzip zlib-devel zlib openssl-devel opensslnginx
源碼編譯Python3.5
[root@ansibel ~]# tar xf Python-3.5.2.tgz -C /usr/src/
[root@ansibel ~]# cd /usr/src/Python-3.5.2/
[root@ansibel Python-3.5.2]# ./configure --prefix=/usr/local/python/c++
[root@ansibel Python-3.5.2]# make && make installgit
[root@ansibel Python-3.5.2]# ln -s /usr/local/python/bin/python3 /usr/bin/python3
[root@ansibel Python-3.5.2]# which python3
/usr/bin/python3
[root@ansibel Python-3.5.2]# python3 -V
Python 3.5.2github
安裝ansible最新版本
[root@ansibel Python-3.5.2]# /usr/local/python/bin/pip3 install --upgrade pipweb
[root@ansibel Python-3.5.2]# /usr/local/python/bin/pip3 install ansibleshell
靜心等待ansible安裝完畢後
vim
[root@ansibel Python-3.5.2]# ln -s /usr/local/python/bin/ansible /usr/local/bin/
[root@ansibel Python-3.5.2]# which ansible
/usr/local/bin/ansible
[root@ansibel Python-3.5.2]# ansible --version
ansible 2.7.5
config file = /etc/ansible/ansible.cfg
configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/a
nsible/plugins/modules'] ansible python module location = /usr/local/python/lib/python3.5/site-packages/a
nsible executable location = /usr/local/bin/ansible
python version = 3.5.2 (default, Dec 25 2018, 19:07:10) [GCC 4.8.5 20150623 (Red
Hat 4.8.5-36)]
[root@ansible ~]# /usr/local/python/bin/ansible-doc -l
查看總幫助
[root@ansible ~]# /usr/local/python/bin/ansible-doc -s shell
查看shell模塊的幫助
[root@ansible ~]# /usr/local/python/bin/ansible-doc -s raw 查看raw模塊的幫助
ansible是無agent的,無agent是怎麼批量管理服務器的?主要是借用ssh來批量管理服務器。
ssh默認登錄是須要密碼的,因此管理起來比較麻煩,本次實驗主要是介紹ssh的無密碼登錄。
ssh無密碼登錄實現之後,使用ansible批量管理服務器就變得簡單了。
Host | IP |
---|---|
ansible | 10.1.1.131 |
web01 | 10.1.1.132 |
web02 | 10.1.1.133 |
生成祕鑰對
[root@ansibel python]# ssh-keygen -t rsa -f ~/.ssh/id_rsa -P ""
Generating public/private rsa key pair.
Created directory '/root/.ssh'.
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:xxnEp0IW6w0wuI6oPA5TOp/m0pRo/X7TTHXRl9EkoeY root@ansibel
The key's randomart image is:
+---[RSA 2048]----+
| .o .o. ++=|
| . ooo. .o +o|
| . oo .oo . .|
| . ..+.* . |
| oo+ S.* E |
|o++.. o |
|Oo . + |
|+*o. . o o |
|.== ... . |
+----[SHA256]-----+
分發祕鑰
[root@ansibel python]# ssh-copy-id -i ~/.ssh/id_rsa.pub "-o StrictHostKeyChecking=
no" 10.1.1.132
進行免密碼登陸測試
[root@ansibel python]# ssh 10.1.1.132
Last login: Tue Dec 25 18:52:58 2018 from 10.1.1.1
[root@web01 ~]# hostname -I
10.1.1.132
[root@web01 ~]# exit
logout
Connection to 10.1.1.132 closed.
[root@ansibel python]# hostname -I
10.1.1.131
經過pip安裝的ansible是沒有配置文件的。咱們須要建立一個
特別提示:
Web01 ===> 主機名
ansible_ssh_host ===>主機IP
ansible_ssh_port ===>ssh的默認端口
ansible_ssh_user ===>ssh的用戶名
ansible_ssh_pass ===>ssh的用戶的鏈接密碼
[root@ansibel python]# mkdir -p /etc/ansible
[root@ansibel python]# > /etc/ansible/hosts
[root@ansibel python]# vim /etc/ansible/hosts
[root@ansibel python]# cat /etc/ansible/hosts #ansible主機管理配置文件
[nginx] #被管理的主機組名稱
web01 ansible_ssh_host=10.1.1.132 #第一臺主機
web02 ansible_ssh_host=10.1.1.133 ansible_ssh_port=22 ansible_ssh_user=root ansibl
e_ssh_pass=666666 #第二臺主機
若是咱們已經設置了ssh免密鑰了。那麼就不須要寫密碼了。例如:web01
咱們要是沒有設置免密鑰,那麼就須要安裝sshpass工具,並在/etc/ansible/hosts文件裏寫上主機的鏈接密碼。例如web02
#下載epel源安裝sshpass
[root@ansible python]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
[root@ansible python]# yum -y install sshpass
[root@ansible python]# which sshpass
/usr/bin/sshpass
語法:
ansible chensiqi -m command -a 'uptime'
ansible 主機組 -m ansible內置功能模塊名 -a 命令
進行命令測試:
[root@ansibel ansible]# ansible web01 -m command -a 'uptime'
web01 | CHANGED | rc=0 >>
19:53:13 up 1:04, 3 users, load average: 0.00, 0.01, 0.05
[root@ansibel ansible]# ansible web02 -m command -a 'uptime'
web02 | CHANGED | rc=0 >>
19:53:19 up 1:04, 3 users, load average: 0.00, 0.01, 0.05
[root@ansibel ansible]# ansible web01 -m command -a 'hostname -I'
web01 | CHANGED | rc=0 >>
10.1.1.132
[root@ansibel ansible]# ansible web02 -m command -a 'hostname -I'
web02 | CHANGED | rc=0 >>
10.1.1.133
[root@ansibel ansible]# ansible nginx -m ping
web01 | SUCCESS => {
"changed": false,
"ping": "pong"
}
web02 | SUCCESS => {
"changed": false,
"ping": "pong"
}
ansible -i /etc/ansible/hosts 主機或主機組 -m 指定模塊 -a 命令
不用-i指定配置文件默認爲/etc/ansible/hosts
ansible all -m ping
主機組,主機,all表明全部
主機和主機組注意事項:
主機組範圍 |
解釋 |
all |
表明全部主機 |
Web01:web02 |
能夠指定多臺主機 |
all:\!web01 |
指定all但不包含web01,注意!前須要加轉意符號\ |
[root@ansibel ansible]# ansible all -m ping
web01 | SUCCESS => {
"changed": false,
"ping": "pong"
}
web02 | SUCCESS => {
"changed": false,
"ping": "pong"
}
#command支持直接回顯命令的執行結果
[root@ansibel ansible]# ansible all -m command -a "pwd"
web01 | CHANGED | rc=0 >>
/root
web02 | CHANGED | rc=0 >>
/root
#command模塊不支持管道符操做
[root@ansibel ansible]# ansible all -m command -a "echo test | grep t"
web01 | CHANGED | rc=0 >>
test | grep t
web02 | CHANGED | rc=0 >>
test | grep t
#command模塊不支持重定向操做
[root@ansibel ansible]# ansible all -m command -a "echo bb >> /tmp/testansible"
web01 | CHANGED | rc=0 >>
bb >> /tmp/testansible
web02 | CHANGED | rc=0 >>
bb >> /tmp/testansible
#shell模塊支持管道符
[root@ansibel ansible]# ansible all -m shell -a "echo test | grep t"
web02 | CHANGED | rc=0 >>
test
web01 | CHANGED | rc=0 >>
test
#shell支持重定向
[root@ansibel ansible]# ansible all -m shell -a "echo bb >> /tmp/testansible"
web01 | CHANGED | rc=0 >>
web02 | CHANGED | rc=0 >>
[root@web01 tmp]# ls
testansible
[root@web01 tmp]# cat testansible
bb
[root@web02 tmp]# ls
testansible
[root@web02 tmp]# cat testansible
bb
若是遇到特殊符號須要加入\轉義,這樣子ansible才能正常運行
[root@ansibel ansible]# ansible web01 -m shell -a "cat /etc/passwd | awk -F":" '{p
rint \$1}' "
web01 | CHANGED | rc=0 >>
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
operator
games
ftp
nobody
systemd-network
dbus
polkitd
sshd
postfix
rpc
rpcuser
nfsnobody
兩邊都沒有掛光盤,用ansible批量管理給他們一塊兒掛光盤。
[root@ansibel ansible]# ansible all -m raw -a 'mount /dev/sr0 /media/cdrom'
web01 | CHANGED | rc=0 >>
mount: /dev/sr0 is write-protected, mounting read-only
Shared connection to 10.1.1.132 closed.
web02 | CHANGED | rc=0 >>
mount: /dev/sr0 is write-protected, mounting read-only
Shared connection to 10.1.1.133 closed.
用ansible批量搭建yum倉庫
[root@ansibel ansible]# ansible all -m raw -a 'mv /etc/yum.repos.d/* /tmp/'
web01 | CHANGED | rc=0 >>
Shared connection to 10.1.1.132 closed.
web02 | CHANGED | rc=0 >>
Shared connection to 10.1.1.133 closed.
[root@ansibel ansible]# ansible all -m copy -a 'src=/etc/yum.repos.d/CentOS-Media.
repo dest=/etc/yum.repos.d/'
.............中間信息略..................................
測試安裝nmap
[root@ansibel ansible]# ansible all -m shell -a 'yum -y install nmap'
copy模塊的參數,ansible 主機組 -m 模塊 -a 命令
6.2 copy模塊拷貝文件
特別提示:若是目標路徑不存在會自動建立
src===>源文件路徑 dest=目標路徑位置
[root@ansibel ansible]# cd /tmp
[root@ansibel tmp]# ls
[root@ansibel tmp]# echo "aaa" >> test
[root@ansibel tmp]# cat test
aaa
[root@ansibel ansible]# ansible all -m copy -a 'src=/tmp/test dest=/tmp/'
6.3 copy模塊拷貝文件夾
特別提示:
若是目標路徑裏有與我拷貝的文件同名文件的話,會直接覆蓋目標路徑下的文件
[root@ansible ~]# mkdir -p /service/scripts
[root@ansible ~]# echo "aaa" > /service/scripts/test.txt
[root@ansible ~]# echo "bbb" > /service/scripts/test2.txt
#拷貝/service/scripts/ 目錄下全部內容到dest的路徑下(注意兩條命令的對比)
[root@ansible ~]# ansible web01 -m copy -a "src=/service/scripts/ dest=/service/sc
ripts/"
web01 | CHANGED => {
"changed": true,
"dest": "/service/scripts/",
"src": "/service/scripts/"
}
#拷貝/service/scripts目錄自己及其內部的全部內容到dest的路徑下(注意兩條命令的對比)
[root@ansible ~]# ansible web02 -m copy -a "src=/service/scripts dest=/service/scr
ipts/"
web02 | CHANGED => {
"changed": true,
"dest": "/service/scripts/",
"src": "/service/scripts"
}
特別提示:
參數:backup=yes ===>意思是,若是目標路徑下,有與我同名但不一樣內容的文件時,在覆蓋前,對目標文件先進行備份。
[root@ansible ansible]# echo "bbb" >> /tmp/test
[root@ansible ansible]# cat /tmp/test
aaa
bbb
[root@ansible ansible]# ansible all -m copy -a 'src=/tmp/test dest=/tmp/ backup=ye
s'
6.5 copy模塊指定用戶和屬主,權限。
[root@ansible ansible]# ansible web01 -m copy -a 'src=/tmp/test dest=/tmp/ owner=n
obody group=nobody mode=0600'
七,ansible的script模塊批量運行腳本
ansible的script模塊可以實現遠程服務器批量運行本地的shell腳本
操做示例-->遠程批量分發並自動部署nginx,全部被管理端須要掛載光盤,並建立本地yum配置文件
[root@ansible scripts]# pwd
/service/scripts
[root@ansible scripts]# vim auto_nginx.sh
[root@ansible scripts]# cat auto_nginx.sh
#!/bin/sh
#nginx install shell scripts
test -d /media/cdrom || mkdir -p /media/cdrom
mount /dev/sr0 /media/cdrom &>/dev/null
yum -y install gcc gcc-c++ make pcre pcre-devel zlib zlib-devel openssl openssl-d
evel &>/dev/nulltest -d /service/scripts || exit 3
cd /service/scripts/
tar xf nginx-1.10.2.tar.gz -C /usr/src/
cd /usr/src/nginx-1.10.2/
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_stat
us_module &>/dev/nullmake &>/dev/null
make install &>/dev/null
exit 0
[root@ansible scripts]# vim fenfa.sh
[root@ansible scripts]# cat fenfa.sh
#!/bin/sh
Group=$1
ansible $Group -m copy -a "src=/service/scripts/ dest=/service/scripts/"
ansible $Group -m script -a "/service/scripts/auto_nginx.sh"
[root@ansible scripts]# ls
auto_nginx.sh fenfa.sh nginx-1.10.2.tar.gz
注:auto_nginx.sh #自動安裝nginx腳本
fenfa.sh #批量分發腳本
nginx-1.10.2.tar.gz #nginx源碼包
激活腳本
[root@ansible scripts]# sh fenfa.sh all
此腳本只是個演示示例,工做中須要寫的儘可能嚴謹一些。
八,ansible-playbook的初步使用
playbook的使用,playbook能夠把ansible的模塊進行組合
[root@ansible scripts]# ln -s /usr/local/python/bin/ansible-playbook /usr/local/bin
[root@ansible scripts]# which ansible-playbook
/usr/local/bin/ansible-playbook
ansible-playbook劇本,能夠像拍戲同樣把各個模塊編成一個故事,設定一個劇本,什麼狀況下就去執行什麼樣的,甚至還能夠吧if或者else的判斷加進去。還能對他的某些結果進行判斷。劇本用yaml結尾
用playbook執行shell模塊
[root@ansible scripts]# mkdir bak
[root@ansible scripts]# mv *.sh bak/
[root@ansible scripts]# mv *.gz bak/
[root@ansible scripts]# ls
bak
8.1 playbook的簡單shell模塊的使用
黃色執行成功對對方電腦作出改變,綠色執行成功,不做出改變,紅色失敗。
模板說明:
--- #開頭必須有三個小-,頂格寫
- hosts: #正文配置代碼的第一級,必須有兩個空格(-佔一個空格位)
- host: web01 #web01是host參數的值,值和hosts:之間要有一個空格
tasks: #tasks:表示接下來要執行的具體任務
- name: #相對於tasks再多縮進兩個格(-佔一個空格位),表示屬於tasks的下一級
- name: test #test只是要執行的具體命令的名字能夠隨便寫。name:後仍是有一個空格要注意
shell: #表示調用shell模塊執行命令相對於tasks仍舊要多縮進兩個空格
shell: echo "xxx" >> xxx #shell:後邊仍是要有個空格,須要注意。
[root@ansible scripts]# vim test_shell.yaml
[root@ansible scripts]# cat test_shell.yaml
---
- hosts: web01
tasks:
- name: test
shell: echo "welcome to yunjisaun" >> /tmp/username
- name: test2
shell: echo "welcome to yunjisuan" >> /tmp/username
執行playbook配置文件
[root@ansible scripts]# ansible-playbook test_shell.yaml
8.2 playbook的簡單copy模塊的使用
[root@ansible scripts]# echo "welcom to yunjisuan" >> /tmp/test_copy
[root@ansible scripts]# vim test_copy.yaml
[root@ansible scripts]# cat test_copy.yaml
---
- hosts: all
tasks:
- name: test copy
copy: src=/tmp/test_copy dest=/tmp/
[root@ansible scripts]# ansible-playbook test_copy.yaml
8.3 playbook使用register輸出命令運行結果
咱們在用playbook進行ansible模塊操做的時候,並無命令的執行結果輸出,默認被隱藏了。
咱們能夠經過register模塊最加輸出命令的執行結果
[root@ansible scripts]# vim test_register.yaml
[root@ansible scripts]# cat test_register.yaml
---
- hosts: all
tasks:
- name: test register
shell: echo "welcome to yunjisuan"
register: print_result
- debug: var=print_result
register: print_result #將以前命令的輸出結果保存在變量print_result裏,變量名隨便取。
- debug: var=print_result #將變量的值做爲debug輸出出來。var是固定的。調用debug模塊·
Stdout標準屏幕輸出。
[root@ansible scripts]# ansible-playbook test_register.yaml
PLAY [all] ***********************************************************************
TASK [Gathering Facts] ***********************************************************
ok: [web01]
ok: [web02]
TASK [test register] *************************************************************
changed: [web02]
changed: [web01]
TASK [debug] *********************************************************************
ok: [web01] => {
"print_result": {
"changed": true,
"cmd": "echo \"welcome to yunjisuan\"",
"delta": "0:00:00.004567",
"end": "2018-12-26 01:00:34.160829",
"failed": false,
"rc": 0,
"start": "2018-12-26 01:00:34.156262",
"stderr": "",
"stderr_lines": [],
"stdout": "welcome to yunjisuan",
"stdout_lines": [
"welcome to yunjisuan" #命令的執行結果有輸出了
]
}
}
ok: [web02] => {
"print_result": {
"changed": true,
"cmd": "echo \"welcome to yunjisuan\"",
"delta": "0:00:00.004002",
"end": "2018-12-26 01:00:34.146846",
"failed": false,
"rc": 0,
"start": "2018-12-26 01:00:34.142844",
"stderr": "",
"stderr_lines": [],
"stdout": "welcome to yunjisuan",
"stdout_lines": [
"welcome to yunjisuan" #命令的執行結果有輸出了
]
}
}
PLAY RECAP ***********************************************************************
web01 : ok=3 changed=1 unreachable=0 failed=0
web02 : ok=3 changed=1 unreachable=0 failed=0
8.4 nginx配置下發並檢測
[root@ansible scripts]# vim test_nginx_conf.yaml
[root@ansible scripts]# cat test_nginx_conf.yaml
---
- hosts: all
tasks:
- name: copy nginx.conf
copy: src=/tmp/nginx.conf dest=/usr/local/nginx/conf/ backup=yes
- name:
shell: /usr/local/nginx/sbin/nginx -t
register: nginx_result
- debug: var=nginx_result
[root@ansible scripts]# vim test_vars.yaml
[root@ansible scripts]# cat test_vars.yaml
---
- hosts: all
vars: #定義變量
- name: "yunjisuan" #第一個name變量
age: "3" #第二個age變量
tasks:
- name: "{{ name }}" #{{}}兩對大括號引用變量,變量名兩頭空格
shell: echo "myname {{ name }},myage {{ age }}"
register: var_result
- debug: var=var_result
特別提示:
引用變量須要在雙引號中引用。
[root@ansible scripts]# ansible-playbook test_vars.yaml
[WARNING]: Found variable using reserved name: name #這裏提示,name是一個保留的內置變量,咱們在自定義時不能用
................................中間信息略...........................................
有警告是由於自定義變量和系統的內置保留變量同名了,在使用自定義變量時,咱們要特別注意不要和系統的內置保留變量同名,容易引起問題。
修改一下name這個變量再發送,就不會出警告了。
在使用自定義變量時,咱們要特別注意不要和系統的內置保留變量同名,容易引起問題。
[root@ansible scripts]# vim test_vars.yaml
[root@ansible scripts]# cat test_vars.yaml
---
- hosts: all
vars:
- Name: "yunjisuan"
age: "3"
tasks:
- name: "{{ Name }}"
shell: echo "myname {{ Name }},myage {{ age }}"
register: var_result
- debug: var=var_result
[root@ansible scripts]# ansible-playbook test_vars.yaml 修改過以後就沒有警告了
9.2 在playbook中使用ansible內置變量
咱們可使用ansible all -m setup | less查看ansible內置變量
ansible 127.0.0.1 -m setup | less 看本身的ansible內置變量。
[root@ansible scripts]# vim test_setupvars.yaml
[root@ansible scripts]# cat test_setupvars.yaml
---
- hosts: all
gather_facts: True #使用ansible內置變量
tasks:
- name: setup var
shell: echo "ip {{ ansible_all_ipv4_addresses[0] }} cpu {{ ansible_processor_c
ount }}" register: var_result
- debug: var=var_result
經過使用ansible的內置變量能夠批量取服務器的許多內置信息
[root@ansible scripts]# ansible-playbook test_setupvars.yaml
PLAY [all] ***********************************************************************
TASK [Gathering Facts] ***********************************************************
ok: [web01]
ok: [web02]
TASK [setup var] *****************************************************************
changed: [web02]
changed: [web01]
TASK [debug] *********************************************************************
ok: [web01] => {
"var_result": {
"changed": true,
"cmd": "echo \"ip 10.1.1.132 cpu 1\"",
"delta": "0:00:00.004011",
"end": "2018-12-26 01:16:06.857398",
"failed": false,
"rc": 0,
"start": "2018-12-26 01:16:06.853387",
"stderr": "",
"stderr_lines": [],
"stdout": "ip 10.1.1.132 cpu 1",
"stdout_lines": [
"ip 10.1.1.132 cpu 1" #信息
]
}
}
ok: [web02] => {
"var_result": {
"changed": true,
"cmd": "echo \"ip 10.1.1.133 cpu 1\"",
"delta": "0:00:00.003761",
"end": "2018-12-26 01:16:06.835669",
"failed": false,
"rc": 0,
"start": "2018-12-26 01:16:06.831908",
"stderr": "",
"stderr_lines": [],
"stdout": "ip 10.1.1.133 cpu 1",
"stdout_lines": [
"ip 10.1.1.133 cpu 1" #信息
]
}
}
PLAY RECAP ***********************************************************************
web01 : ok=3 changed=1 unreachable=0 failed=0
web02 : ok=3 changed=1 unreachable=0 failed=0
簡單演示一下ansible內置變量的取用方法ansible all -m setup | less
[root@ansible scripts]# vim test_setupvars.yaml
[root@ansible scripts]# cat test_setupvars.yaml
---
- hosts: all
gather_facts: True
tasks:
- name: setup var
shell: echo "ip {{ ansible_all_ipv4_addresses[0] }} cpu {{ ansible_processor_c
ount }}" >> /tmp/test - name: setup var2
shell: echo "time {{ ansible_date_time["date"] }}" >> /tmp/test
register: var_result
- debug: var=var_result
[root@ansible scripts]# vim test_setupvars.yaml
[root@ansible scripts]# cat test_setupvars.yaml
---
- hosts: all
gather_facts: True
tasks:
- name: setup var
shell: echo "ip {{ ansible_all_ipv4_addresses[0] }} cpu {{ ansible_processor_c
ount }}" >> /tmp/test - name: setup var2
shell: echo "time {{ ansible_date_time["date"] }}" >> /tmp/test
register: var_result
- debug: var=var_result
[root@ansible scripts]# vim test_setupvars.yaml
[root@ansible scripts]# cat test_setupvars.yaml
---
- hosts: all
gather_facts: True
tasks:
- name: setup var
shell: echo "ip {{ ansible_all_ipv4_addresses[0] }} cpu {{ ansible_processor_c
ount }}" >> /tmp/test - name: setup var2
shell: echo "time {{ ansible_date_time["date"] }}" >> /tmp/test
register: var_result
- debug: var=var_result
[root@ansible scripts]# ansible-playbook test_setupvars.yaml
十,Playbook下發可變配置文件
配置文件若是使用copy模塊去下發的話,那配置都是同樣的;
若是下發的配置文件裏有可變的配置,須要用到template模塊。
10.1 利用template模塊下發可變的配置文件
copy模塊分發的是不能變的模塊
eg:變量原封不動沒有改變。copy模塊識別不了變量。
[root@ansible scripts]# vim /tmp/test
[root@ansible scripts]# cat /tmp/test
my name is {{ myname }} #自定義變量
my name is {{ ansible_all_ipv4_addresses[0] }} #系統變量
[root@ansible scripts]# ansible web01 -m copy -a 'src=/tmp/test dest=/tmp/'
利用template模塊下發可變的配置文件
[root@ansible scripts]# vim test_filevars.yaml
[root@ansible scripts]# cat test_filevars.yaml
---
- hosts: all
gather_facts: True #開啓系統變量
vars:
- myname: "yunjisuan" #自定義變量
tasks:
- name: template test
template: src=/tmp/test dest=/root/test #使用template下發可變配置文件
[root@ansible scripts]# ansible-playbook test_filevars.yaml
10.2 下發配置文件裏面使用判斷語法
[root@ansible scripts]# vim /tmp/if.j2
[root@ansible scripts]# cat /tmp/if.j2
{% if PORT %} #if PORT存在
ip=0.0.0.0:{{ PORT }}
{% else %} #不然的話
ip=0.0.0.0:80
{% endif %} #結尾
[root@ansible scripts]# vim test_ifvars.yaml
[root@ansible scripts]# cat test_ifvars.yaml
---
- hosts: all
gather_facts: True #開啓系統內置變量
vars:
- PORT: 90 #自定義變量
tasks:
- name: jinja2 if test
template: src=/tmp/if.j2 dest=/root/test
[root@ansible scripts]# ansible-playbook test_ifvars.yaml
若是咱們將變量PORT值爲空的話,就會是另外的結果
[root@ansible scripts]# vim test_ifvars.yaml
[root@ansible scripts]# cat test_ifvars.yaml
---
- hosts: all
gather_facts: True
vars:
- PORT:
tasks:
- name: jinja2 if test
template: src=/tmp/if.j2 dest=/root/test
[root@ansible scripts]# ansible-playbook test_ifvars.yaml
十一,Playbook的notify通知和下發nginx配置
#實戰下發可執行動做的可變的nginx配置文件
先把兩邊nginx服務開啓
[root@ansible scripts]# vim test_nginxvars.yaml
[root@ansible scripts]# cat test_nginxvars.yaml
---
- hosts: all
gather_facts: True
vars:
- myname: yunjisuan
tasks:
- name: nginx conf
template: src=/tmp/test dest=/root/test
notify:
- stop nginx
handlers:
- name: reload nginx
shell: /usr/local/nginx/sbin/nginx -s reload
- name: stop nginx
shell: /usr/local/nginx/sbin/nginx -s stop
[root@ansible scripts]# ansible-playbook test_nginxvars.yaml
服務發生改變了。
把服務再次啓動,再發就不會發生改變了。
[root@ansible scripts]# ansible-playbook test_nginxvars.yaml