目录
3.2.3在roles目录中分别创建以各角色名称命令的目录,如httpd
3.2.4在每个角色命令的目录中分别创建files、handlers、tasks、templates、meta、defaults和vars目录,用不到的目录可以创建为空
3.2.5在每个角色的handlers、tasks、meta、defaults、vars目录下创建main.yml文件,千万不能自定义
一:template模块介绍
ansible的template模块,可以将带有参数的配置文件传递到目标地址,可以对文件进行属组属主的修改以及备份。优先类似于docker的consul。
templates功能:根据模板文件动态生成对应的配置文件,命名必须以 .j2 结尾
示例:
yum -y install httpd
rpm -qc httpd
cp /etc/httpd/conf/httpd.conf /etc/httpd/conf/httpd.conf.bak
#修改httpd配置文件
[root@localhost conf]# vim /etc/httpd/conf/httpd.conf
42 Listen {
{http_port}} #给监听端口定义变量
43 MaxClients {
{client_num}} #最大并发量定义变量
95 ServerName {
{server_name}} #给域名定义变量
vim /etc/ansible/hosts
[webserver]
192.168.163.150 httpd_port=192.168.163.150:80 server_name="www.test.com:80" access_num=100
vim apache.yaml
- hosts: webserver
remote_user: root
vars:
- ap: httpd
tasks:
- name: install httpd
yum: name={
{ap}}
- name: create configure file
template: src=/root/httpd/httpd.conf.j2 dest=/etc/httpd/conf/httpd.conf
notify:
- restart httpd
- name: start httpd server
service: name={
{ap}} enabled=true state=started
handlers:
- name: restart httpd
service: name={
{ap}} state=restarted
ansible-playbook apache.yaml --syntax-check
ansible-playbook apache.yaml #执行脚本
去两台远程主机上查看
ansible webserver -m shell -a 'cat /etc/httpd/conf/httpd.conf | grep -i "listen"'
ansible webserver -m shell -a 'cat /etc/httpd/conf/httpd.conf | grep -i "maxclient"'
ansible webserver -m shell -a 'cat /etc/httpd/conf/httpd.conf | grep -i "servername"'
二: tags模块
当你写了一个很长的playbook,其中有很多的任务,这并没有什么问题,不过在实际使用这个剧本时,你可能只是想要执行其中的一部分任务而已,或者,你只想要执行其中一类任务而已,而并非想要执行整个剧本中的全部任务,这时,我们可以借助tags模块为任务进行打标签操作,任务存在标签后,我们可以在执行playbook时利用标签,指定执行哪些任务,或者不执行哪些任务
简单的说:在一个playbook中,我们一般会定义很多个task,如果我们只想执行其中的某一个task或多个task时就可以使用tags标签功能了。
示例:
vim tags1.yaml
- hosts: webserver
remote_user: root
tasks:
- name: copy hosts file
copy: src=/etc/hosts dest=/o