4.ansible使用-playbook劇本模式-批量操作案例實(shí)戰(zhàn)
1.playbook相關(guān)介紹
1).playbook 是一個由yml語法編寫的文本文件,它由play和task 兩部分組成。
play: 主要定義要操作主機(jī)或者主機(jī)組
task: 主要定義對主機(jī)或主機(jī)組具體執(zhí)行的任務(wù),可以是一個任務(wù),也可以是多個任務(wù)(模塊)
2).playbook是由一個或多個模塊組成的,使用多個不同的模塊,共同完成一件事情。
Playbook通過yaml語法識別描述的狀態(tài)文件,擴(kuò)展名是yaml。
2.yaml三板斧
1).縮進(jìn): ? yaml使用一個固定的縮進(jìn)風(fēng)格表示層級結(jié)構(gòu),每個縮進(jìn)由兩個空格組成,不能使用tab鍵。
2).冒號: ? 以冒號結(jié)尾的除外,其他所有冒號后面所有必須有空格。
3).短橫線: 表示列表項,使用一個短橫線加一個空格作為一個列表項,多個項使用同樣的縮進(jìn)級別作為同一列表。
3.ansible-playbook的實(shí)戰(zhàn)案例
案例1: 用ansible-playbook方式遠(yuǎn)程批量安裝httpd-若修改完配置,重新推送后,配置改了但沒重載服務(wù),不生效
管理端:192.168.171.128
[root@localhost ~]# ls
httpd.conf ?httpd_install.yaml
[root@localhost ~]# vim httpd_install.yaml
#這是一個ansible的playbook
#第一步: 找到誰,hosts: 定義主機(jī)清單,ansible的hosts文件里定義的主機(jī)清單模塊名
#第二步: 大概做的任務(wù): 安裝,配置,啟動
#第三步: 具體怎么做
#name:描述信息,task里有3個同級別的列表步驟
#yum: ? ? 遠(yuǎn)端安裝服務(wù),yum模塊安裝服務(wù)(installed)
#copy: ? ?遠(yuǎn)端拷貝文件,copy模塊傳送文件到遠(yuǎn)端
#service: 遠(yuǎn)端啟動服務(wù)(started)
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
? ?- name: install httpd fuwu
? ? ?yum: name=httpd,httpd-tools state=installed
? ?- name: configure httpd fuwu
? ? ?copy: src=/root/httpd.conf dest=/etc/httpd/conf/httpd.conf
? ?- name: qidong httpd fuwu
? ? ?service: name=httpd state=started enabled=yes
[root@localhost ~]# ansible-playbook --syntax-check httpd_install.yaml ? ?#檢查語法是否有誤
playbook: httpd_install.yaml
[root@localhost ~]# ansible-playbook -C httpd_install.yaml ? #-C模擬執(zhí)行,不是真的直接執(zhí)行
[root@localhost ~]# ansible-playbook httpd_install.yaml ? ? ?#真正模擬執(zhí)行,批量操作遠(yuǎn)端機(jī)器安裝服務(wù)
所有被管理端機(jī)器: 192.168.171.129和192.168.171.130 httpd服務(wù)會安裝后并啟動
[root@localhost ~]# systemctl status httpd
● httpd.service - The Apache HTTP Server
? Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
? Active: active (running) since Fri 2019-10-04 01:20:56 CST; 4s ago
案例2: 用ansible-playbook方式遠(yuǎn)程批量安裝httpd-若修改完配置,重新推送后,配置改了且能觸發(fā)重啟服務(wù)配置生效.
管理端:192.168.171.128
[root@localhost ~]# curl 192.168.171.129
80端口能訪問httpd
[root@localhost ~]# curl 192.168.171.130
80端口能訪問httpd
[root@localhost ~]# ls
httpd.conf ?httpd_install.yaml
[root@localhost ~]# vim httpd.conf
Listen 8888 ?#修改端口
[root@localhost ~]# vim httpd_install.yaml
#這是一個ansible的playbook
#第一步: 找到誰,hosts: 定義主機(jī)清單,ansible的hosts文件里定義的主機(jī)清單模塊名
#第二步: 大概做的任務(wù): 安裝,配置,啟動 ? ?#第三步: 具體怎么做
#name:描述信息,task里有3個同級別的列表步驟
#yum: ? ? 遠(yuǎn)端安裝服務(wù),yum模塊安裝服務(wù)
#copy: ? ?遠(yuǎn)端拷貝文件,copy模塊傳送文件到遠(yuǎn)端 ? ? #service: 遠(yuǎn)端啟動服務(wù)
#notify: 當(dāng)該項中的配置文件內(nèi)容有變更時候,會觸發(fā)下面的handlers的重啟操作(根據(jù)handler描述信息關(guān)聯(lián)觸發(fā))
#handler: 當(dāng)被觸發(fā)后執(zhí)行的操作,重啟httpd服務(wù)
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
? ?- name: install httpd fuwu
? ? ?yum: name=httpd,httpd-tools state=installed
? ?- name: configure httpd fuwu
? ? ?copy: src=/root/httpd.conf dest=/etc/httpd/conf/httpd.conf
? ? ?notify: Restart httpd fuwu
? ?- name: qidong httpd fuwu
? ? ?service: name=httpd state=started enabled=yes
?handlers:
? ?- name: Restart httpd fuwu
? ? ?service: name=httpd state=restarted
[root@localhost ~]# ansible-playbook --syntax-check httpd_install.yaml ? ?#檢查語法是否有誤
playbook: httpd_install.yaml
[root@localhost ~]# ansible-playbook -C httpd_install.yaml ? #-C模擬執(zhí)行,不是真的直接執(zhí)行
[root@localhost ~]# ansible-playbook httpd_install.yaml ? ? ?#真正模擬執(zhí)行,批量操作遠(yuǎn)端機(jī)器安裝服務(wù)
[root@localhost ~]# curl 192.168.171.129
curl: (7) Failed connect to 192.168.171.129:80; Connection refused
[root@localhost ~]# curl 192.168.171.130
curl: (7) Failed connect to 192.168.171.130:80; Connection refused
[root@localhost ~]# curl 192.168.171.129:8888
能訪問httpd
[root@localhost ~]# curl 192.168.171.130:8888
能訪問httpd
所有被管理端機(jī)器:192.168.171.129和192.168.171.130 httpd服務(wù)會安裝后并啟動
[root@localhost ~]# systemctl status httpd
● httpd.service - The Apache HTTP Server
? Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
? Active: active (running) since Fri 2019-10-04 01:47:03 CST; 18s ago
[root@localhost ~]# netstat -anput |grep 80
無
[root@localhost ~]# netstat -anput |grep 8888
tcp6 ? ? ? 0 ? ? ?0 :::8888 ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?16723/httpd ?
案例3: 用ansible-playbook方式遠(yuǎn)程卸載httpd,且刪除相應(yīng)的用戶和配置文件
[root@localhost ~]# ansible test -m command -a ?"netstat -anput"
192.168.171.129 | CHANGED | rc=0 >>
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address ? ? ? ? ? Foreign Address ? ? ? ? State ? ? ? PID/Program name ? ?
tcp ? ? ? ?0 ? ? ?0 0.0.0.0:22 ? ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?921/sshd ? ? ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 127.0.0.1:25 ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?1075/master ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 192.168.171.129:22 ? ? ?192.168.171.1:55261 ? ? ESTABLISHED 1856/sshd: root@pts
tcp ? ? ? ?0 ? ? ?0 192.168.171.129:22 ? ? ?192.168.171.128:48634 ? ESTABLISHED 3255/sshd: root@pts
tcp6 ? ? ? 0 ? ? ?0 :::22 ? ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?921/sshd ? ? ? ? ? ?
tcp6 ? ? ? 0 ? ? ?0 :::8888 ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?3233/httpd ? ? ? ? ?
tcp6 ? ? ? 0 ? ? ?0 ::1:25 ? ? ? ? ? ? ? ? ?:::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?1075/master ? ? ? ?
192.168.171.130 | CHANGED | rc=0 >>
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address ? ? ? ? ? Foreign Address ? ? ? ? State ? ? ? PID/Program name ? ?
tcp ? ? ? ?0 ? ? ?0 0.0.0.0:22 ? ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?928/sshd ? ? ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 127.0.0.1:25 ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?1083/master ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 192.168.171.130:22 ? ? ?192.168.171.1:55262 ? ? ESTABLISHED 1530/sshd: root@pts
tcp ? ? ? ?0 ? ? ?0 192.168.171.130:22 ? ? ?192.168.171.128:45528 ? ESTABLISHED 2905/sshd: root@pts
tcp6 ? ? ? 0 ? ? ?0 :::22 ? ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?928/sshd ? ? ? ? ? ?
tcp6 ? ? ? 0 ? ? ?0 :::8888 ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?2887/httpd ? ? ? ?
tcp6 ? ? ? 0 ? ? ?0 ::1:25 ? ? ? ? ? ? ? ? ?:::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?1083/master ? ? ? ?
[root@localhost ~]# vim httpd_removed.yaml
#這是一個ansible的playbook
#第一步: 找到誰,hosts: 定義主機(jī)清單,ansible的hosts文件里定義的主機(jī)清單模塊名
#第二步: 大概做的任務(wù): 安裝,配置,啟動 ? ?#第三步: 具體怎么做
#name:描述信息,task里有3個同級別的列表步驟
#yum: ? ? 遠(yuǎn)端安裝服務(wù),yum模塊安裝服務(wù)
#copy: ? ?遠(yuǎn)端拷貝文件,copy模塊傳送文件到遠(yuǎn)端 ? ? #service: 遠(yuǎn)端啟動服務(wù)
#notify: 當(dāng)該項中的配置文件內(nèi)容有變更時候,會觸發(fā)下面的handlers的重啟操作(根據(jù)handler描述信息關(guān)聯(lián)觸發(fā))
#handler: 當(dāng)被觸發(fā)后執(zhí)行的操作,重啟httpd服務(wù)
#remote_user: 指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: 默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
? ?- name: remove httpd fufu
? ? ?yum: name=httpd,httpd-tools state=absent
? ?- name: remove apache user
? ? ?user: name=apache state=absent
? ?- name: remove data file
? ? ?file: name=/etc/httpd state=absent
[root@localhost ~]# ansible-playbook httpd_removed.yaml
[root@localhost ~]# ansible test -m command -a ?"netstat -anput"
192.168.171.130 | CHANGED | rc=0 >>
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address ? ? ? ? ? Foreign Address ? ? ? ? State ? ? ? PID/Program name ? ?
tcp ? ? ? ?0 ? ? ?0 0.0.0.0:22 ? ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?928/sshd ? ? ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 127.0.0.1:25 ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?1083/master ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 192.168.171.130:22 ? ? ?192.168.171.128:45532 ? ESTABLISHED 3495/sshd: root@not
tcp ? ? ? ?0 ? ? ?0 192.168.171.130:22 ? ? ?192.168.171.128:45534 ? ESTABLISHED 3676/sshd: root@pts
tcp ? ? ? ?0 ? ? ?0 192.168.171.130:22 ? ? ?192.168.171.1:55262 ? ? ESTABLISHED 1530/sshd: root@pts
tcp6 ? ? ? 0 ? ? ?0 :::22 ? ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?928/sshd ? ? ? ? ? ?
tcp6 ? ? ? 0 ? ? ?0 ::1:25 ? ? ? ? ? ? ? ? ?:::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?1083/master ? ? ? ?
192.168.171.129 | CHANGED | rc=0 >>
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address ? ? ? ? ? Foreign Address ? ? ? ? State ? ? ? PID/Program name ? ?
tcp ? ? ? ?0 ? ? ?0 0.0.0.0:22 ? ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?921/sshd ? ? ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 127.0.0.1:25 ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?1075/master ? ? ? ?
tcp ? ? ? ?0 ? ? ?0 192.168.171.129:22 ? ? ?192.168.171.128:48644 ? ESTABLISHED 4025/sshd: root@pts
tcp ? ? ? ?0 ? ? ?0 192.168.171.129:22 ? ? ?192.168.171.1:55261 ? ? ESTABLISHED 1856/sshd: root@pts
tcp ? ? ? ?0 ? ? ?0 192.168.171.129:22 ? ? ?192.168.171.128:48638 ? ESTABLISHED 3844/sshd: root@not
tcp6 ? ? ? 0 ? ? ?0 :::22 ? ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?921/sshd ? ? ? ? ? ?
tcp6 ? ? ? 0 ? ? ?0 ::1:25 ? ? ? ? ? ? ? ? ?:::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?1075/master ? ? ? ?
[root@localhost ~]# ansible test -m command -a ?"netstat -anput" |grep 88
空
案例4: 在管理端安裝nfs服務(wù),在被管理端批量掛載nfs的共享目錄
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ~]# yum -y install nfs-utils ? ?#管理端和被管理的掛載端都要安裝,才能掛載
[root@localhost ~]# vim /etc/exports
/data *(rw,no_root_squash)
[root@localhost ~]# ls /data/
a.txt
[root@localhost ~]# cat /data/a.txt
111
[root@localhost ~]# systemctl start nfs
[root@localhost ~]# cat web_mount.yaml
#test: 為/etc/ansible/hosts中的主機(jī)列表 ? #task: 執(zhí)行的任務(wù)
#name: 描述信息 ? ? ? ? ? ? ? ? ? ? ? ? ? ?#mount: mount模塊
#state=mounted: 馬上直接掛載設(shè)備,并將配置寫入/etc/fstab
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
? ?- name: Mount nfs server share data
? ? ?mount: src=192.168.171.128:/data path=/data fstype=nfs opts=defaults state=mounted
#若將state=absent,則立刻卸載并清除/etc/fstab中信息
[root@localhost ~]# ansible-playbook web_mount.yaml ? #執(zhí)行劇本
所有被管理端:192.168.171.129和192.168.171.130
[root@localhost ~]# df -h|tail -1
192.168.171.128:/data ? ? 50G ?1.3G ? 49G ? 3% /data
[root@localhost ~]# cat /etc/fstab |tail -1
192.168.171.128:/data /data nfs defaults 0 0
[root@localhost ~]# cat /data/a.txt
111
案例5: 遠(yuǎn)程批量安裝rsync服務(wù),并設(shè)置管理端修改配置文件變動時候執(zhí)行playbook時觸發(fā)重啟服務(wù)
管理端:192.168.171.128
[root@localhost ~]# ls
conf ?rsync_install.yaml ?web_mount.yaml
[root@localhost ~]# ls conf/
rsyncd.conf
[root@localhost ~]# cat conf/rsyncd.conf
uid = www
gid = www
port = 873
fake super = yes
use chroot = no
max connections = 200
timeout = 600
ignore errors
read only = false
list = false
auth users = rsync_backup
secrets file = /etc/rsyncd.password
log file = /var/log/rsyncd.log
[data]
path=/data
[root@localhost ~]# cat rsync_install.yaml
#test: 為/etc/ansible/hosts中的主機(jī)列表 ?#task: 執(zhí)行的任務(wù)
#name: 描述信息 ? ? ? ? ? ? ? ? ? ? ?#yum: yum模塊,安裝服務(wù)的
#copy: copy模塊,遠(yuǎn)程傳遞文件的 ? ? ? #file: file模塊,遠(yuǎn)程創(chuàng)建目錄的
#service: service模塊,遠(yuǎn)程管理服務(wù)的
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
#安裝rsync服務(wù)
? ?- name: Install Rsync Server
? ? ?yum: name=rsync state=installed
#配置rsync服務(wù),cp自定義的配置文件,且設(shè)置當(dāng)該配置文件變更需要觸發(fā)重啟操作
? ?- name: configure rsync server
? ? ?copy: src=./conf/rsyncd.conf dest=/etc/rsyncd.conf
? ? ?notify: Restart Rsync Server
#創(chuàng)建rsync虛擬用戶和密碼文件,用戶名:rsync_backup,密碼:1
? ?- name: create Virt User
? ? ?copy: content='rsync_backup:1' dest=/etc/rsyncd.password mode=600
#遠(yuǎn)程創(chuàng)建用戶組和用戶
? ?- name: create yonghu zu www
? ? ?group: name=www gid=666
#遠(yuǎn)程創(chuàng)建用戶, create_home=no:不創(chuàng)建家目錄 指定shell不能登錄
? ?- name: create yonghu www
? ? ?user: name=www uid=666 group=www create_home=no shell=/sbin/nologin
#遠(yuǎn)程創(chuàng)建目錄/data作為共享目錄
? ?- name: create data mulu
? ? ?file: path=/data state=directory recurse=yes owner=www group=www mode=755
#遠(yuǎn)程啟動rsync服務(wù)
? ?- name: start rsyncserver
? ? ?service: name=rsyncd state=started enabled=yes
#下面handler是接收notify的觸發(fā),執(zhí)行重啟rsync服務(wù)
?handlers:
? ?- name: Restart Rsync Server
? ? ?service: name=rsyncd state=restarted
[root@localhost ~]# ansible-playbook rsync_install.yaml #執(zhí)行遠(yuǎn)程安裝
[root@localhost ~]# yum -y install rsync
[root@localhost ~]# echo 1 > /etc/rsync.pass
[root@localhost ~]# chmod -R 600 /etc/rsync.pass
[root@localhost ~]# echo 111 > a.txt
[root@localhost ~]# rsync -av a.txt rsync_backup@192.168.171.129::data --password-file=/etc/rsync.pass
[root@localhost ~]# rsync -av a.txt rsync_backup@192.168.171.130::data --password-file=/etc/rsync.pass
所有被管理端:192.168.171.129和192.168.171.130
[root@localhost ~]# systemctl status rsyncd
● rsyncd.service - fast remote file copy program daemon
? Loaded: loaded (/usr/lib/systemd/system/rsyncd.service; enabled; vendor preset: disabled)
? Active: active (running) since Fri 2019-10-04 17:16:39 CST; 4min 18s ago
[root@localhost ~]# netstat -anput |grep 873
tcp ? ? ? ?0 ? ? ?0 0.0.0.0:873 ? ? ? ? ? ? 0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?23117/rsync
[root@localhost ~]# ls /data/
a.txt
[root@localhost ~]# cat /data/a.txt
111
案例6: 遠(yuǎn)程批量安裝nfs服務(wù),并設(shè)置管理端修改配置文件變動時候執(zhí)行playbook時觸發(fā)重啟服務(wù)
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ~]# ls
conf ?nfs_install.yaml
[root@localhost ~]# ls conf/
exports
[root@localhost ~]# cat conf/exports
/data *(rw,no_root_squash)
[root@localhost ~]# cat nfs_install.yaml
#hosts: 指定要操作的主機(jī)清單
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
#遠(yuǎn)端安裝nfs
? ?- name: Install nfs server
? ? ?yum: name=nfs-utils state=installed
#配置nfs,自定義配置文件傳遞到遠(yuǎn)端,并修改配置后觸發(fā)重啟服務(wù)動作
? ?- name: configure nfs server
? ? ?copy: src=./conf/exports dest=/etc/exports
? ? ?notify: Restart Nfs Server
#遠(yuǎn)程遞歸創(chuàng)建共享目錄
? ?- name: create share data directory
? ? ?file: path=/data state=directory recurse=yes owner=root group=root mode=755
#遠(yuǎn)程啟動nfs
? ?- name: start nfs server
? ? ?service: name=nfs-server state=started enabled=yes
?handlers:
? ?- name: Restart Nfs Server
? ? ?service: name=nfs-server state=restarted
[root@localhost ~]# ansible-playbook nfs_install.yaml ? #執(zhí)行遠(yuǎn)程安裝
[root@localhost ~]# yum -y install nfs-utils ?#安裝客戶端,查看掛載使用
[root@localhost ~]# showmount -e 192.168.171.129
Export list for 192.168.171.129:
/data *
[root@localhost ~]# showmount -e 192.168.171.130
Export list for 192.168.171.130:
/data *
所有被管理端:192.168.171.129和192.168.171.130
[root@localhost ~]# systemctl status nfs
● nfs-server.service - NFS server and services
? Loaded: loaded (/usr/lib/systemd/system/nfs-server.service; enabled; vendor preset: disabled)
?Drop-In: /run/systemd/generator/nfs-server.service.d
? ? ? ? ? └─order-with-mounts.conf
? Active: active (exited) since Fri 2019-10-04 17:39:08 CST; 14s ago
案例7: 遠(yuǎn)程批量添加定時任務(wù)
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ~]# cat cron_add.yaml
#hosts: 指定要操作的主機(jī)清單
#task: 任務(wù)列表
#name:描述注釋信息
#cron:cron模塊,添加定時任務(wù),分時日月周,不寫的默認(rèn)是*,下面只關(guān)添加定時任務(wù),具體要執(zhí)行,需要本地有相應(yīng)的腳本才行
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
- hosts: test
?remote_user: root
?gather_facts: no
?tasks:
? ?- name: Crontab Scripts chuangjian
? ? ?cron: name='dellog scripts' minute=00 hour=01 job="/bin/sh /server/scripts/delete_log.sh &>/dev/null"
[root@localhost ~]# ansible-playbook cron_add.yaml ? #執(zhí)行遠(yuǎn)程添加
注意:若下面是:刪除定時任務(wù):
cron: name='backup scripts' minute=00 hour=01 job="/bin/sh /server/scripts/delete_log.sh &>/dev/null" state=absent
若下面則是:注釋定時任務(wù):
cron: name='backup scripts' minute=00 hour=01 job="/bin/sh /server/scripts/delete_log.sh &>/dev/null" disabled=yes
所有被管理端:192.168.171.129和192.168.130
[root@localhost ~]# crontab -l
#Ansible: dellog scripts
00 01 * * * /bin/sh /server/scripts/delete_log.sh &>/dev/null
案例8: 遠(yuǎn)程批量安裝源碼nginx服務(wù)
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ansible-playbook-deploy-nginx-source-code]# pwd
/root/ansible-playbook-deploy-nginx-source-code
[root@localhost ansible-playbook-deploy-nginx-source-code]# ls
nginx-1.23.3.tar.gz ?nginx_source_code_deploy.yaml
[root@localhost ansible-playbook-deploy-nginx-source-code]# cat nginx_source_code_deploy.yaml
#參考鏈接: https://www.cnblogs.com/gjun/articles/12123253.html ? https://www.jianshu.com/p/a00f0699485c
#test: 為/etc/ansible/hosts中的主機(jī)列表 ?#task: 執(zhí)行的任務(wù)
#name: 描述信息 ? ? ? ? ? ? ? ? ? ? ?#yum: yum模塊,安裝服務(wù)的
#copy: copy模塊,遠(yuǎn)程傳遞文件的 ? ? ? #file: file模塊,遠(yuǎn)程創(chuàng)建目錄的
#service: service模塊,遠(yuǎn)程管理服務(wù)的
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
#使用前先將相關(guān)軟件包: nginx壓縮包和jdk壓縮包上傳到/root/ansible-playbook-deploy-nginx/目錄中
- hosts: test
?remote_user: root
?gather_facts: no
?vars:
? ?src_nginx: /root/ansible-playbook-deploy-nginx-source-code/nginx-1.23.3.tar.gz
? ?nginx_jieya_dir: /usr/local
? ?nginx_install_dir: /usr/local/nginx
? ?nginx_jieyahou_name: nginx-1.23.3
?tasks:
? ?#上傳nginx壓縮安裝包到: /root/ansible-playbook-deploy-nginx/, 提前操作
? ?#安裝編譯工具和相關(guān)依賴
? ?#- name: Install gcc gcc-c++ and yilai
? ?# ?yum: name={{ item }} state=installed
? ?# ?with_items:
? ?# ? ?- gcc
? ?# ? ?- gcc-c++
? ?# ? ?- openssl-devel
? ?# ? ?- openssl
? ?# ? ?- zlib
? ?# ? ?- zlib-devel
? ?# ? ?- pcre
? ?# ? ?- pcre-devel
? ?#注意: 下面yum安裝依賴方式也可用上面方式安裝
? ?#安裝編譯工具和相關(guān)依賴
? ?- name: Install gcc gcc-c++ and yilai
? ? ?yum: name=gcc,gcc-c++,openssl-devel,openssl,zlib,zlib-devel,pcre,pcre-devel,vim,wget state=installed
? ?#解壓nginx壓縮包
? ?- name: Unarchive nginx package
? ? ?unarchive:
? ? ? ?src: "{{ src_nginx }}"
? ? ? ?dest: "{{ nginx_jieya_dir }}"
? ?#配置編譯nginx
? ?- name: config and bianyi nginx
? ? ?shell: useradd -s /sbin/nologin nginx &&
? ? ? ? ? ?cd {{ nginx_jieya_dir }} &&
? ? ? ? ? ?cd {{ nginx_jieyahou_name }} &&
? ? ? ? ? ?./configure --user=nginx --group=nginx --prefix={{ nginx_install_dir }} --with-http_stub_status_module --with-http_ssl_module &&
? ? ? ? ? ?make && make install
? ?#啟動nginx
? ?- name: Start nginx
? ? ?shell: /usr/local/nginx/sbin/nginx
? ?#注意上面解壓也可用另一種方式: shell命令
? ?#- name: Unarchive tomcat package
? ?# ?copy: src=/root/ansible-playbook-deploy-tomcat/apache-tomcat-8.0.32.tar.gz dest=/tmp/
? ?#- name: Unarchive tomcat
? ?# ?shell: cd /tmp && tar -zxf apache-tomcat-8.0.32.tar.gz
[root@localhost ansible-playbook-deploy-nginx-source-code]# ansible-playbook nginx_source_code_deploy.yaml
開始部署
所有被管理端:192.168.171.129和192.168.130查看nginx部署情況
[root@localhost ~]# ps -ef |grep nginx
root ? ? ?37256 ? ? ?1 ?0 20:02 ? ? ? ? ?00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
nginx ? ? 37257 ?37256 ?0 20:02 ? ? ? ? ?00:00:00 nginx: worker process
root ? ? ?37268 ?26792 ?0 20:03 pts/0 ? ?00:00:00 grep --color=auto nginx
[root@localhost ~]# netstat -anput |grep 80|grep LISTEN
tcp ? ? ? ?0 ? ? ?0 0.0.0.0:80 ? ? ? ? ? ? ?0.0.0.0:* ? ? ? ? ? ? ? LISTEN ? ? ?37256/nginx: master
[root@localhost ~]# curl -I http://127.0.0.1/
HTTP/1.1 200 OK
Server: nginx/1.23.3
Date: Sat, 08 Apr 2023 12:04:37 GMT
Content-Type: text/html
Content-Length: 615
Last-Modified: Sat, 08 Apr 2023 12:02:56 GMT
Connection: keep-alive
ETag: "643157f0-267"
Accept-Ranges: bytes
案例9: 遠(yuǎn)程批量安裝二進(jìn)制tomcat服務(wù)
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ansible-playbook-deploy-tomcat]# pwd
/root/ansible-playbook-deploy-tomcat
[root@localhost ansible-playbook-deploy-tomcat]# ls
apache-tomcat-8.0.32.tar.gz ?jdk-8u65-linux-x64.gz ?tomcat_deploy.yaml
[root@localhost ansible-playbook-deploy-tomcat]# cat tomcat_deploy.yaml
#test: 為/etc/ansible/hosts中的主機(jī)列表 ?#task: 執(zhí)行的任務(wù)
#name: 描述信息 ? ? ? ? ? ? ? ? ? ? ?#yum: yum模塊,安裝服務(wù)的
#copy: copy模塊,遠(yuǎn)程傳遞文件的 ? ? ? #file: file模塊,遠(yuǎn)程創(chuàng)建目錄的
#service: service模塊,遠(yuǎn)程管理服務(wù)的
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
#使用前先將相關(guān)軟件包: tomcat壓縮包和jdk壓縮包上傳到/root/ansible-playbook-deploy-tomcat/目錄中
- hosts: test
?remote_user: root
?gather_facts: no
?vars:
? ?src_jdk: /root/ansible-playbook-deploy-tomcat/jdk-8u65-linux-x64.gz
? ?jdk_install_dir: /usr/local/
? ?jdk_jieyahou_name: jdk1.8.0_65
? ?src_tomcat: /root/ansible-playbook-deploy-tomcat/apache-tomcat-8.0.32.tar.gz
? ?tomcat_install_dir: /usr/local/
? ?tomcat_jieyahou_name: apache-tomcat-8.0.32
?tasks:
? ?#上傳jdk壓縮安裝包到: /root/ansible-playbook-deploy-tomcat/, 提前操作
? ?#解壓jdk壓縮包
? ?- name: Unarchive jdk package
? ? ?unarchive:
? ? ? ?src: "{{ src_jdk }}"
? ? ? ?dest: "{{ jdk_install_dir }}"
? ?#配置jdk環(huán)境變量
? ?- name: set jdk global env
? ? ?shell: echo '''export JAVA_HOME=/usr/local/{{ jdk_jieyahou_name }}''' >> ~/.bashrc &&
? ? ? ? ? ? echo '''export PATH=$JAVA_HOME/bin:$PATH''' >> ~/.bashrc &&
? ? ? ? ? ? echo '''export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar''' >> ~/.bashrc &&
? ? ? ? ? ? source ~/.bashrc
? ?#有yum源時jdk也可采用下面方式安裝
? ?#安裝jdk環(huán)境
? ?#- name: Install jdk1.8
? ?# ?yum: name=java-1.8.0-openjdk state=installed
? ?#上傳tomcat軟件包到/root/ansible-playbook-deploy-tomcat/目錄,提前操作
? ?#解壓tomcat軟件包
? ?- name: Unarchive tomcat package
? ? ?unarchive:
? ? ? ?src: "{{ src_tomcat }}"
? ? ? ?dest: "{{ tomcat_install_dir }}"
? ?#start tomcat,注意:tomcat首次啟動需要用 nohup ./startup.sh & 或 nohup ./catalina.sh & 啟動,如果直接使用/.../.../tomcat.../bin/startup.sh則啟動不了
? ?- name: Start tomcat
? ? ?shell: cd "{{ tomcat_install_dir }}" && cd "{{ tomcat_jieyahou_name }}"/bin ?&& nohup ./startup.sh &
? ?#注意上面解壓也可用另一種方式: shell命令
? ?#- name: Unarchive tomcat package
? ?# ?copy: src=/root/ansible-playbook-deploy-tomcat/apache-tomcat-8.0.32.tar.gz dest=/tmp/
? ?#- name: Unarchive tomcat
? ?# ?shell: cd /tmp && tar -zxf apache-tomcat-8.0.32.tar.gz
[root@localhost ansible-playbook-deploy-tomcat]# ansible-playbook tomcat_deploy.yaml
開始部署
所有被管理端:192.168.171.129和192.168.130查看nginx部署情況
[root@localhost ~]# ls /usr/local/jdk1.8.0_65/
bin ?COPYRIGHT ?db ?include ?javafx-src.zip ?jre ?lib ?LICENSE ?man ?README.html ?release ?src.zip ?THIRDPARTYLICENSEREADME-JAVAFX.txt ?THIRDPARTYLICENSEREADME.txt
[root@localhost ~]# ls /usr/local/apache-tomcat-8.0.32/
bin ?conf ?lib ?LICENSE ?logs ?NOTICE ?RELEASE-NOTES ?RUNNING.txt ?temp ?webapps ?work
[root@localhost ~]# ps -ef |grep tomcat
root ? ? ?37600 ? ? ?1 ?4 20:09 ? ? ? ? ?00:00:03 /usr/local/jdk1.8.0_65/bin/java -Djava.util.logging.config.file=/usr/local/apache-tomcat-8.0.32/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=/usr/local/apache-tomcat-8.0.32/endorsed -classpath /usr/local/apache-tomcat-8.0.32/bin/bootstrap.jar:/usr/local/apache-tomcat-8.0.32/bin/tomcat-juli.jar -Dcatalina.base=/usr/local/apache-tomcat-8.0.32 -Dcatalina.home=/usr/local/apache-tomcat-8.0.32 -Djava.io.tmpdir=/usr/local/apache-tomcat-8.0.32/temp org.apache.catalina.startup.Bootstrap start
root ? ? ?37632 ?26792 ?0 20:10 pts/0 ? ?00:00:00 grep --color=auto tomcat
[root@localhost ~]# cat /root/.bashrc |grep export
export JAVA_HOME=/usr/local/jdk1.8.0_65
export PATH=$JAVA_HOME/bin:$PATH
export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
案例10: 遠(yuǎn)程批量安裝二進(jìn)制mysql5.7服務(wù)
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ansible-playbook-deploy-mysql5.7]# pwd
/root/ansible-playbook-deploy-mysql5.7
[root@localhost ansible-playbook-deploy-mysql5.7]# ls
my.cnf ?mysql-5.7.19-linux-glibc2.12-x86_64.tar.gz ?mysql5.7_deploy.yaml ?mysqld.service
[root@localhost ansible-playbook-deploy-mysql5.7]# cat mysqld.service
[Unit]
Description=MySQL Server
Documentation=man:mysqld(8)
Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/data/mysql5.7/bin/mysqld --defaults-file=/etc/my.cnf
LimitNOFILE = 15000
[root@localhost ansible-playbook-deploy-mysql5.7]# cat mysql5.7_deploy.yaml
#test: 為/etc/ansible/hosts中的主機(jī)列表 ?#task: 執(zhí)行的任務(wù)
#name: 描述信息 ? ? ? ? ? ? ? ? ? ? ?#yum: yum模塊,安裝服務(wù)的
#copy: copy模塊,遠(yuǎn)程傳遞文件的 ? ? ? #file: file模塊,遠(yuǎn)程創(chuàng)建目錄的
#service: service模塊,遠(yuǎn)程管理服務(wù)的
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
#使用前先將相關(guān)軟件包: mysql壓縮包和jdk壓縮包上傳到/root/ansible-playbook-deploy-mysql5.7/目錄中
- hosts: test
?remote_user: root
?gather_facts: no
?vars:
? ?src_mysql: /root/ansible-playbook-deploy-mysql5.7/mysql-5.7.19-linux-glibc2.12-x86_64.tar.gz
? ?mysql_install_dir: /data/mysql5.7
? ?mysql_data_dir: /data/mysql5.7/data
? ?mysql_log_dir: /data/mysql5.7/log
? ?mysql_yasuo_package_name: mysql-5.7.19-linux-glibc2.12-x86_64.tar.gz
? ?mysql_jieyahou_name: mysql-5.7.19-linux-glibc2.12-x86_64
? ?config_mysql: /root/ansible-playbook-deploy-mysql5.7/my.cnf
? ?service_mysql: /root/ansible-playbook-deploy-mysql5.7/mysqld.service
?tasks:
? ?#上傳mysql壓縮安裝包到: /root/ansible-playbook-deploy-mysql5.7/, 提前操作
? ?#安裝相關(guān)依賴
? ?- name: yilai
? ? ?yum: name=libaio-devel state=installed
? ?#傳輸mysql壓縮包
? ?- name: transfer mysql package
? ? ?copy: src={{ src_mysql }} ?dest=/opt/
? ?#解壓mysql壓縮包并移動
? ?- name: Unarchive mysql package
? ? ?shell: mkdir /data &&
? ? ? ? ? ? cd /opt/ && tar -zxf {{ mysql_yasuo_package_name }} &&
? ? ? ? ? ? mv {{ mysql_jieyahou_name }} {{ mysql_install_dir }}
? ?#創(chuàng)建mysql用戶,數(shù)據(jù)目錄和日志目錄,并設(shè)置權(quán)限
? ?- name: create mysql user log data
? ? ?shell: useradd -s /sbin/nologin mysql &&
? ? ? ? ? ? mkdir {{ mysql_data_dir }} &&
? ? ? ? ? ? mkdir {{ mysql_log_dir }} &&
? ? ? ? ? ? chown -R mysql.mysql {{ mysql_install_dir }} &&
? ? ? ? ? ? echo '''export PATH=/data/mysql5.7/bin/:$PATH''' >> ~/.bashrc &&
? ? ? ? ? ? source ~/.bashrc
? ?#準(zhǔn)備mysql配置文件,傳輸過去
? ?- name: transfer my.conf
? ? ?copy: src={{ config_mysql }} dest=/etc/
? ?#初始化mysql
? ?- name: init mysql
? ? ?shell: mysqld --initialize --user=mysql --basedir={{ mysql_install_dir }} --datadir={{ mysql_data_dir }}
? ?#準(zhǔn)備mysqld.service文件,傳輸過去,交給systemctl管理服務(wù)
? ?- name: transfer mysqld.service
? ? ?copy: src={{ service_mysql }} dest=/etc/systemd/system/
? ?#刷新service文件和啟動mysql
? ?- name: flush service conf
? ? ?shell: systemctl daemon-reload &&
? ? ? ? ? ? systemctl enable mysqld &&
? ? ? ? ? ? systemctl start mysqld
? ?#修改mysql的登錄密碼,初始化安裝后的mysql,初始密碼會在相應(yīng)日志文件中,mysql_error.log中過濾password可以找出初始密碼進(jìn)行登錄,然后登錄mysql,使用set password='xx';修改密碼
? ?#下面在腳本中,非交互式登錄mysql時,獲取不到密碼變量的密碼,可以手動登錄修改密碼
? ?#- name: change mysql password wei '123456'
? ?# ?shell: init_mysql_pass=`cat /data/mysql5.7/log/mysql_error.log |grep password |awk '{print $NF}'` &&
? ?# ? ? ? ? mysql -uroot -p'${init_mysql_pass}' -e "set password='123456';"
? ?#注意上面解壓也可用另一種方式: shell命令
? ?#- name: Unarchive tomcat package
? ?# ?copy: src=/root/ansible-playbook-deploy-tomcat/apache-tomcat-8.0.32.tar.gz dest=/tmp/
? ?#- name: Unarchive tomcat
? ?# ?shell: cd /tmp && tar -zxf apache-tomcat-8.0.32.tar.gz
[root@localhost ansible-playbook-deploy-tomcat]# ansible-playbook mysql5.7_deploy.yaml
開始部署
所有被管理端:192.168.171.129和192.168.130查看mysql部署情況
[root@localhost ~]# ps -ef |grep mysql
mysql ? ? 38278 ? ? ?1 ?1 20:20 ? ? ? ? ?00:00:00 /data/mysql5.7/bin/mysqld --defaults-file=/etc/my.cnf
root ? ? ?38320 ?26792 ?0 20:21 pts/0 ? ?00:00:00 grep --color=auto mysql
[root@localhost ~]# netstat -anput |grep 3306
tcp6 ? ? ? 0 ? ? ?0 :::3306 ? ? ? ? ? ? ? ? :::* ? ? ? ? ? ? ? ? ? ?LISTEN ? ? ?38278/mysqld ? ? ?
[root@localhost ~]# cat /data/mysql5.7/log/mysql_error.log |grep password |awk '{print $NF}' #查看默認(rèn)密碼
5)P0Z=zkulkd
[root@localhost ~]# mysql -uroot -p'5)P0Z=zkulkd' ? #使用初始化默認(rèn)密碼登錄mysql
mysql> set password='123456';
mysql> quit
[root@localhost ~]# mysql -uroot -p'123456' ? ? ? ? #使用新密碼登錄mysql即可
案例11: playbook中使用template模板管理nginx配置文件
管理端:192.168.171.128
[root@localhost ~]# cat /etc/ansible/hosts
[test] ? ? ? ? ? ? ? ? ? ?#添加一個組名
192.168.171.129 ? ? ? ? ? #添加被管理主機(jī)的IP
192.168.171.130 ? ? ? ? ? #添加被管理主機(jī)的IP
[root@localhost ansible-playbook-template-nginx-conf]# pwd
/root/ansible-playbook-template-nginx-conf
[root@localhost ansible-playbook-template-nginx-conf]# ls
playbook-template-nginx-conf.yaml ?site.j2
[root@localhost ansible-playbook-template-nginx-conf]# cat playbook-template-nginx-conf.yaml
#test: 為/etc/ansible/hosts中的主機(jī)列表 ?#task: 執(zhí)行的任務(wù)
#name: 描述信息 ? ? ? ? ? ? ? ? ? ? ?#yum: yum模塊,安裝服務(wù)的
#copy: copy模塊,遠(yuǎn)程傳遞文件的 ? ? ? #file: file模塊,遠(yuǎn)程創(chuàng)建目錄的
#service: service模塊,遠(yuǎn)程管理服務(wù)的
#remote_user: root 是指定遠(yuǎn)程主機(jī)上使用的用戶
#gather_facts: no 是默認(rèn)執(zhí)行playbook時候,默認(rèn)會收集目標(biāo)主機(jī)的信息,禁用掉能提高效率
#使用前先將相關(guān)軟件包: 文件包上傳到/root/ansible-playbook-vars-transfer-file/目錄中
- hosts: test
?remote_user: root
?gather_facts: no
?vars:
? ?http_port: 80 ? ? ? ? ? ? ? ?#定義變量
? ?server_name: www.test.com ? ?#定義變量
?tasks:
- template: src=site.j2 dest=/tmp/site.conf ?
#引用模板拷貝到目標(biāo)主機(jī)進(jìn)行渲染,以該目錄作為測試,也可以直接拷貝到nginx相應(yīng)目錄
[root@localhost ansible-playbook-template-nginx-conf]# cat site.j2
server {
? ?listen {{http_port}}; ? ? ? ? ? ? ? ? ? #調(diào)用變量
? ?server_name {{server_name}}; ? ? ? ? ? ?#調(diào)用變量
? ?location / {
? ? ? ?root /var/www/html;
? ? ? ?index index.html;
? ?}
}
[root@localhost ansible-playbook-template-nginx-conf]# ansible-playbook playbook-template-nginx-conf.yaml
所有被管理端:192.168.171.129和192.168.130查看/tmp目錄配置文件情況
[root@localhost ~]# ls /tmp/site.conf
/tmp/site.conf
[root@localhost ~]# cat /tmp/site.conf
server {
? ?listen 80; ? ? ? ? ? ? ? ? ? #調(diào)用變量
? ?server_name www.test.com; ? ?#調(diào)用變量
? ?location / {
? ? ? ?root /var/www/html;
? ? ? ?index index.html;
? ?}
}?