playbooks 本身由以下各部分组成
(1)Tasks:任务,即通过 task 调用 ansible 的模板将多个操作组织在一个 playbook 中运行
(2)Variables:变量
(3)Templates:模板
(4)Handlers:处理器,当changed状态条件满足时,(notify)触发执行的操作
(5)Roles:角色
//示例:
vim test1.yaml
--- #yaml文件以---开头,以表明这是一个yaml文件,可省略
- name: first play #定义一个play的名称,可省略
gather_facts: false #设置不进行facts信息收集,这可以加快执行速度,可省略
hosts: webservers #指定要执行任务的被管理主机组,如多个主机组用冒号分隔
remote_user: root #指定被管理主机上执行任务的用户
tasks: #定义任务列表,任务列表中的各任务按次序逐个在hosts中指定的主机上执行
- name: test connection #自定义任务名称
ping: #使用 module: [options] 格式来定义一个任务
- name: disable selinux
command: '/sbin/setenforce 0' #command模块和shell模块无需使用key=value格式
ignore_errors: True #如执行命令的返回值不为0,就会报错,tasks停止,可使用ignore_errors忽略失败的任务
- name: disable firewalld
service: name=firewalld state=stopped #使用 module: options 格式来定义任务,option使用key=value格式
- name: install httpd
yum: name=httpd state=latest
- name: install configuration file for httpd
copy: src=/opt/httpd.conf dest=/etc/httpd/conf/httpd.conf #这里需要一个事先准备好的/opt/httpd.conf文件
notify: "restart httpd" #如以上操作后为changed的状态时,会通过notify指定的名称触发对应名称的handlers操作
- name: start httpd service
service: enabled=true name=httpd state=started
handlers: #handlers中定义的就是任务,此处handlers中的任务使用的是service模块
- name: restart httpd #notify和handlers中任务的名称必须一致
service: name=httpd state=restarted
##Ansible在执行完某个任务之后并不会立即去执行对应的handler,而是在当前play中所有普通任务都执行完后再去执行handler,这样的好处是可以多次触发notify,但最后只执行一次对应的handler,从而避免多次重启。
//运行playbook
ansible-playbook test1.yaml
//补充参数:
-k(–ask-pass):用来交互输入ssh密码
-K(-ask-become-pass):用来交互输入sudo密码
-u:指定用户
ansible-playbook test1.yaml --syntax-check #检查yaml文件的语法是否正确
ansible-playbook test1.yaml --list-task #检查tasks任务
ansible-playbook test1.yaml --list-hosts #检查生效的主机
ansible-playbook test1.yaml --start-at-task='install httpd' #指定从某个task开始运行
//定义、引用变量
- name: second play
hosts: dbservers
remote_user: root
vars: #定义变量
- groupname: mysql #格式为 key: value
- username: nginx
tasks:
- name: create group
group: name={{groupname}} system=yes gid=306 #使用 {{key}} 引用变量的值
- name: create user
user: name={{username}} uid=306 group={{groupname}}
- name: copy file
copy: content="{{ansible_default_ipv4}}" dest=/opt/vars.txt #在setup模块中可以获取facts变量信息
ansible-playbook test1.yaml -e "username=nginx" #在命令行里定义变量
//指定远程主机sudo切换用户
---
- hosts: dbservers
remote_user: zhangsan
become: yes #2.6版本以后的参数,之前是sudo,意思为切换用户运行
become_user: root #指定sudo用户为root
执行playbook时:ansible-playbook test1.yml -k -K
//when条件判断
在Ansible中,提供的唯一一个通用的条件判断是when指令,当when指令的值为true时,则该任务执行,否则不执行该任务。
//when一个比较常见的应用场景是实现跳过某个主机不执行任务或者只有满足条件的主机执行任务
vim test2.yaml
---
- hosts: all
remote_user: root
tasks:
- name: shutdown host
command: /sbin/shutdown -r now
when: ansible_default_ipv4.address == "192.168.80.12" #when指令中的变量名不需要手动加上 {{}}
或
when: inventory_hostname == "<主机名>"
ansible-playbook test2.yaml
//迭代
Ansible提供了很多种循环结构,一般都命名为with_items,作用等同于 loop 循环。
vim test3.yaml
---
- name: play1
hosts: dbservers
gather_facts: false
tasks:
- name: create file
file:
path: "{{item}}"
state: touch
with_items: [ /opt/a, /opt/b, /opt/c, /opt/d ]
- name: play2
hosts: dbservers
gather_facts: false
vars:
test:
- /tmp/test1
- /tmp/test2
- /tmp/test3
- /tmp/test4
tasks:
- name: create directories
file:
path: "{{item}}"
state: directory
with_items: "{{test}}"
- name: play3
hosts: dbservers
gather_facts: false
tasks:
- name: add users
user: name={{item.name}} state=present groups={{item.groups}}
with_items:
- name: test1
groups: wheel
- name: test2
groups: root
或
with_items:
- {name: 'test1', groups: 'wheel'}
- {name: 'test2', groups: 'root'}
ansible-playbook test3.yaml
//Templates 模块
Jinja是基于Python的模板引擎。Template类是Jinja的一个重要组件,可以看作是一个编译过的模板文件,用来产生目标文本,传递Python的变量给模板去替换模板中的标记。
1.先准备一个以 .j2 为后缀的 template 模板文件,设置引用的变量
cp /etc/httpd/conf/httpd.conf /opt/httpd.conf.j2
vim /opt/httpd.conf.j2
Listen {{http_port}} #42行,修改
ServerName {{server_name}} #95行,修改
DocumentRoot "{{root_dir}}" #119行,修改
2.修改主机清单文件,使用主机变量定义一个变量名相同,而值不同的变量
vim /etc/ansible/hosts
[webservers]
192.168.80.11 http_port=192.168.80.11:80 server_name=www.accp.com:80 root_dir=/etc/httpd/htdocs
[dbservers]
192.168.80.12 http_port=192.168.80.12:80 server_name=www.benet.com:80 root_dir=/etc/httpd/htdocs
3.编写 playbook
vim apache.yaml
---
- hosts: all
remote_user: root
vars:
- package: httpd
- service: httpd
tasks:
- name: install httpd package
yum: name={{package}} state=latest
- name: install configure file
template: src=/opt/httpd.conf.j2 dest=/etc/httpd/conf/httpd.conf #使用template模板
notify:
- restart httpd
- name: create root dir
file: path=/etc/httpd/htdocs state=directory
- name: start httpd server
service: name={{service}} enabled=true state=started
handlers:
- name: restart httpd
service: name={{service}} state=restarted
ansible-playbook apache.yaml
//tags 模块
可以在一个playbook中为某个或某些任务定义“标签”,在执行此playbook时通过ansible-playbook命令使用--tags选项能实现仅运行指定的tasks。
playbook还提供了一个特殊的tags为always。作用就是当使用always作为tags的task时,无论执行哪一个tags时,定义有always的tags都会执行。
vim webhosts.yaml
---
- hosts: webservers
remote_user: root
tasks:
- name: Copy hosts file
copy: src=/etc/hosts dest=/opt/hosts
tags:
- only #可自定义
- name: touch file
file: path=/opt/testhost state=touch
tags:
- always #表示始终要运行的代码
ansible-playbook webhosts.yaml --tags="only"
vim dbhosts.yaml
---
- hosts: dbservers
remote_user: root
tasks:
- name: Copy hosts file
copy: src=/etc/hosts dest=/opt/hosts
tags:
- only
- name: touch file
file: path=/opt/testhost state=touch
ansible-playbook dbhosts.yaml --tags="only"
//分别去两台被管理主机上去查看文件创建情况
//Roles 模块
roles用于层次性、结构化地组织playbook。roles能够根据层次型结构自动装载变量文件、tasks以及handlers等。要使用roles只需要在playbook中使用include指令引入即可。
简单来讲,roles就是通过分别将变量、文件、任务、模板及处理器放置于单独的目录中,并可以便捷的include它们的一种机制。roles一般用于基于主机构建服务的场景中,但也可以是用于构建守护进程等场景中。主要使用场景代码复用度较高的情况下。
假如我们现在有3个被管理主机,第一个要配置成httpd,第二个要配置成haproxy服务器,第三个要配置成MySQL(mariadb)服务器。我们如何来定义playbook?
第一个play用到第一个主机上,用来构建httpd,第二个play用到第二个主机上,用来构建haproxy。这些个play定义在playbook中比较麻烦,将来也不利于模块化调用,不利于多次调用。比如说后来又加进来一个主机,这第3个主机既是httpd服务器,又是haproxy服务器,我们只能写第3个play,上面写上安装httpd和haproxy。这样playbook中的代码就重复了。
为了避免代码重复,可以定义一个角色叫httpd,第二个角色叫haproxy,并使用roles实现代码重复被调用。
//roles 的目录结构:
cd /etc/ansible/
tree roles/
roles/
├── web/ #相当于 playbook 中的 每一个 play 主题
│ ├── files/
│ ├── templates/
│ ├── tasks/
│ ├── handlers/
│ ├── vars/
│ ├── defaults/
│ └── meta/
└── db/
├── files/
├── templates/
├── tasks/
├── handlers/
├── vars/
├── defaults/
└── meta/
//roles 内各目录含义解释
●files
用来存放由 copy 模块或 script 模块调用的文件。
●templates
用来存放 jinjia2 模板,template 模块会自动在此目录中寻找 jinjia2 模板文件。
●tasks
此目录应当包含一个 main.yml 文件,用于定义此角色的任务列表,此文件可以使用 include 包含其它的位于此目录的 task 文件。
●handlers
此目录应当包含一个 main.yml 文件,用于定义此角色中触发条件时执行的动作。
●vars
此目录应当包含一个 main.yml 文件,用于定义此角色用到的变量。
●defaults
此目录应当包含一个 main.yml 文件,用于为当前角色设定默认变量。 这些变量具有所有可用变量中最低的优先级,并且可以很容易地被任何其他变量覆盖。所以生产中我们一般不在这里定义变量
●meta
此目录应当包含一个 main.yml 文件,用于定义此角色的元数据信息及其依赖关系。
//在一个 playbook 中使用 roles 的步骤:
(1)创建以 roles 命名的目录
mkdir /etc/ansible/roles/ -p #yum装完默认就有
(2)创建全局变量目录(可选)
mkdir /etc/ansible/group_vars/ -p
touch /etc/ansible/group_vars/all #文件名自己定义,引用的时候注意
(3)在 roles 目录中分别创建以各角色名称命名的目录,如 httpd、mysql
mkdir /etc/ansible/roles/httpd
mkdir /etc/ansible/roles/mysql
(4)在每个角色命名的目录中分别创建files、handlers、tasks、templates、meta、defaults和vars目录,用不到的目录可以创建为空目录,也可以不创建
mkdir /etc/ansible/roles/httpd/{files,templates,tasks,handlers,vars,defaults,meta}
mkdir /etc/ansible/roles/mysql/{files,templates,tasks,handlers,vars,defaults,meta}
(5)在每个角色的 handlers、tasks、meta、defaults、vars 目录下创建 main.yml 文件,千万不能自定义文件名
touch /etc/ansible/roles/httpd/{defaults,vars,tasks,meta,handlers}/main.yml
touch /etc/ansible/roles/mysql/{defaults,vars,tasks,meta,handlers}/main.yml
(6)修改 site.yml 文件,针对不同主机去调用不同的角色
vim /etc/ansible/site.yml
---
- hosts: webservers
remote_user: root
roles:
- httpd
- hosts: dbservers
remote_user: root
roles:
- mysql
(7)运行 ansible-playbook
cd /etc/ansible
ansible-playbook site.yml
示例:
mkdir /etc/ansible/roles/httpd/{files,templates,tasks,handlers,vars,defaults,meta} -p
mkdir /etc/ansible/roles/mysql/{files,templates,tasks,handlers,vars,defaults,meta} -p
mkdir /etc/ansible/roles/php/{files,templates,tasks,handlers,vars,defaults,meta} -p
touch /etc/ansible/roles/httpd/{defaults,vars,tasks,meta,handlers}/main.yml
touch /etc/ansible/roles/mysql/{defaults,vars,tasks,meta,handlers}/main.yml
touch /etc/ansible/roles/php/{defaults,vars,tasks,meta,handlers}/main.yml
------编写httpd模块------
写一个简单的tasks/main.yml
vim /etc/ansible/roles/httpd/tasks/main.yml
- name: install apache
yum: name={{pkg}} state=latest
- name: start apache
service: enabled=true name={{svc}} state=started
//定义变量:可以定义在全局变量中,也可以定义在roles角色变量中,一般定义在角色变量中
vim /etc/ansible/roles/httpd/vars/main.yml
pkg: httpd
svc: httpd
-------编写mysql模块-------
vim /etc/ansible/roles/mysql/tasks/main.yml
- name: install mysql
yum: name={{pkg}} state=latest
- name: start mysql
service: enabled=true name={{svc}} state=started
vim /etc/ansible/roles/mysql/vars/main.yml
pkg:
- mariadb
- mariadb-server
svc: mariadb
-------编写php模块-----
vim /etc/ansible/roles/php/tasks/main.yml
- name: install php
yum: name={{pkg}} state=latest
- name: start php-fpm
service: enabled=true name={{svc}} state=started
vim /etc/ansible/roles/php/vars/main.yml
pkg:
- php
- php-fpm
svc: php-fpm
-----编写roles示例-----
vim /etc/ansible/site.yml
---
- hosts: webservers
remote_user: root
roles:
- httpd
- mysql
- php
cd /etc/ansible
ansible-playbook site.yml
角色 roles 的作用?
把 playbook 里的各个 play 看作为角色,将各个角色的 tasks 任务、vars 变量、templates 模块、file 文件等内容放置到角色的目录中统一管理,需要的时候可以在 playbook 中直接使用 roles 调用,所以 roles可以实现代码的复用
实验:用roles去完成 lnmp :
先看看最后目录结构:
[root@localhost roles]# tree
.
├── mysql
│?? ├── defaults
│?? │?? └── main.yml
│?? ├── files
│?? ├── handlers
│?? │?? └── main.yml
│?? ├── meta
│?? │?? └── main.yml
│?? ├── tasks
│?? │?? ├── init.yml
│?? │?? └── main.yml
│?? ├── templates
│?? └── vars
│?? └── main.yml
├── nginx
│?? ├── defaults
│?? │?? └── main.yml
│?? ├── files
│?? │?? ├── index.php
│?? │?? └── nginx.repo
│?? ├── handlers
│?? │?? └── main.yml
│?? ├── meta
│?? │?? └── main.yml
│?? ├── tasks
│?? │?? ├── init.yml
│?? │?? └── main.yml
│?? ├── templates
│?? │?? └── default.conf.j2
│?? └── vars
│?? └── main.yml
└── php
├── defaults
│?? └── main.yml
├── files
│?? ├── index.php
│?? ├── php.ini
│?? └── www.conf
├── handlers
│?? └── main.yml
├── meta
│?? └── main.yml
├── tasks
│?? ├── init.yml
│?? └── main.yml
├── templates
└── vars
└── main.yml
24 directories, 24 files
每个主机在下载之前都要进行相同的工作,那么就可以写一个init.yml初始化文件,让每个主机执行之后命令之前先进行调用
- name: disable selinux
command: '/usr/sbin/setenforce 0'
ignore_errors: true
- name: disable firewalld
systemd: name=firewalld state=stopped enabled=no
每个tasks里都有一个init.yml 和 main.yml 文件
MySQL:
- include: init.yml
- name: remove mariadb
yum: name=mariadb* state=absent
- name: download noarch.rpm
shell: 'wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm'
- name: install community-release
yum: name=mysql57-community-release-el7-10.noarch.rpm state=latest
- name: change repo
replace: path=/etc/yum.repos.d/mysql-community.repo regexp='gpgcheck=1' replace='gpgcheck=0'
- name: install server
yum: name=mysql-community-server state=latest
- name: create mysqluser
user: name={{user_name}}
- name: start mysql
systemd: name=mysqld.service state=started enabled=yes
#- name: renew mysql
# shell: rm -rf /var/log/mysqld.log
- name: get password
shell: awk '/A temporary password/{print $NF}' /var/log/mysqld.log
register: password
#- name: change passwd
# shell: /usr/bin/mysqladmin -uroot -p'{{password.stdout}}' password {{new_password}}
- name: login mysql
# msg: "{{password.stdout}}"
shell: |
mysql -uroot -p"{{new_password}}" -e " ALTER USER 'root'@'localhost' IDENTIFIED BY 'Admin@123';"
mysql -uroot -p"{{new_password}}" -e 'grant all privileges on *.* to 'root@"%"' identified by "Admin@123" with grant option;'
mysql -uroot -p"{{new_password}}" -e "flush privileges;"
- name: remove community-release
yum: name=mysql57-community-release-el7-10.noarch state=absent
Nginx:
- include: "init.yml"
- name: copy local yum repo file
copy: src=nginx.repo dest=/etc/yum.repos.d/
- name: install nginx by yum
yum: name=nginx state=latest
- name: copy index.php
copy: src=index.php dest={{root_dir}}
- name: copy template configure file
template: src=default.conf.j2 dest=/etc/nginx/conf.d/default.conf
notify: restart service
- name: start nginx
systemd: name=nginx state=started enabled=yes
php:
- include: init.yml
- name: install epel
shell: 'rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm'
- name: install php
yum: name={{item}}
with_items:
- php72w
- php72w-cli
- php72w-common
- php72w-devel
- php72w-embedded
- php72w-gd
- php72w-mbstring
- php72w-pdo
- php72w-xml
- php72w-fpm
- php72w-mysqlnd
- php72w-opcache
- name: create php user
user: name={{user_name}}
- name: copy php configure file
copy: src=php.ini dest=/etc/php.ini
#- name: copy template file
# template: src=www.conf.j2 dest=/opt/
- name: modify www.conf
replace: path=/etc/php-fpm.d/www.conf regexp="apache" replace="php"
- name: modify listen address
replace: path=/etc/php-fpm.d/www.conf regexp="127.0.0.1:9000" replace={{http_port}}
- name: modify allowed_clients
replace: path=/etc/php-fpm.d/www.conf regexp="127.0.0.1" replace={{remote_addr}}
- name: create root dir
file: state=directory path={{root_dir}}
- name: copy index.php
copy: src=index.php dest={{root_dir}}
- name: start php
systemd: name=php-fpm state=started enabled=yes
vars目录下存放着template引用:
MySQL:
#password: "*5*rQ2qUutE<"
user_name: mysql
new_password: Admin@123
Nginx:
http_port: 192.168.179.25
host_name: www.xny.com
root_dir: /usr/share/nginx/html
remote_addr: 192.168.179.23
remote_port: 9000
pkg: nginx
service: nginx
php:
user_name: php
http_port: 192.168.179.23.:9000
remote_addr: 192.168.179.25
root_dir: /usr/share/nginx/html
其中nginx需要default.conf.j2文件,放在template目录下:(在管理主机上先下载好进行修改,再改成j2文件)
server {
listen {{http_port}};
server_name {{host_name}};
#access_log /var/log/nginx/host.access.log main;
location / {
root {{root_dir}};
index index.php index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root {{root_dir}};
fastcgi_pass {{remote_addr}}:{{remote_port}};
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME {{root_dir}}$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
nginx还有notify和handler触发,其中 handler名字与notify一样:
在文件中存放需要copy模块调用的文件
nginx中存放着nginx.repo和php测试页index.php
php中存放着php页面测试文件,和需要调用的php.ini和www.conf文件
php.ini文件修改date.timezone:
www.conf文件:(其中http_port、remote_addr、user_name定义在vars目录下)
加载完后进行测试:
[root@localhost ansible]# ansible-playbook playbook/lnmp.yaml
PLAY [nginx play] *****************************************************************************
TASK [Gathering Facts] ************************************************************************
ok: [192.168.179.25]
TASK [nginx : disable selinux] ****************************************************************
changed: [192.168.179.25]
TASK [nginx : disable firewalld] **************************************************************
ok: [192.168.179.25]
TASK [nginx : copy local yum repo file] *******************************************************
ok: [192.168.179.25]
TASK [install nginx by yum] *******************************************************************
ok: [192.168.179.25]
TASK [nginx : copy index.php] *****************************************************************
ok: [192.168.179.25]
TASK [nginx : copy template configure file] ***************************************************
ok: [192.168.179.25]
TASK [start nginx] ****************************************************************************
ok: [192.168.179.25]
PLAY [mysql play] *****************************************************************************
TASK [Gathering Facts] ************************************************************************
ok: [192.168.179.27]
TASK [mysql : disable selinux] ****************************************************************
changed: [192.168.179.27]
TASK [mysql : disable firewalld] **************************************************************
ok: [192.168.179.27]
TASK [mysql : remove mariadb] *****************************************************************
ok: [192.168.179.27]
TASK [mysql : download noarch.rpm] ************************************************************
[WARNING]: Consider using the get_url or uri module rather than running 'wget'. If you need
to use command because get_url or uri is insufficient you can add 'warn: false' to this
command task or set 'command_warnings=False' in ansible.cfg to get rid of this message.
changed: [192.168.179.27]
TASK [mysql : install community-release] ******************************************************
changed: [192.168.179.27]
TASK [mysql : change repo] ********************************************************************
changed: [192.168.179.27]
TASK [mysql : install server] *****************************************************************
ok: [192.168.179.27]
TASK [create mysqluser] ***********************************************************************
ok: [192.168.179.27]
TASK [start mysql] ****************************************************************************
ok: [192.168.179.27]
TASK [mysql : get password] *******************************************************************
changed: [192.168.179.27]
TASK [login mysql] ****************************************************************************
changed: [192.168.179.27]
TASK [mysql : remove community-release] *******************************************************
changed: [192.168.179.27]
PLAY [php play] *******************************************************************************
TASK [Gathering Facts] ************************************************************************
ok: [192.168.179.23]
TASK [php : disable selinux] ******************************************************************
fatal: [192.168.179.23]: FAILED! => {"changed": true, "cmd": ["/usr/sbin/setenforce", "0"], "delta": "0:00:00.002675", "end": "2023-06-16 11:30:58.821768", "msg": "non-zero return code", "rc": 1, "start": "2023-06-16 11:30:58.819093", "stderr": "/usr/sbin/setenforce: SELinux is disabled", "stderr_lines": ["/usr/sbin/setenforce: SELinux is disabled"], "stdout": "", "stdout_lines": []}
...ignoring
TASK [php : disable firewalld] ****************************************************************
ok: [192.168.179.23]
TASK [create php user] ************************************************************************
ok: [192.168.179.23]
TASK [copy php configure file] ****************************************************************
ok: [192.168.179.23]
TASK [php : modify www.conf] ******************************************************************
ok: [192.168.179.23]
TASK [php : modify listen address] ************************************************************
ok: [192.168.179.23]
TASK [php : modify allowed_clients] ***********************************************************
ok: [192.168.179.23]
TASK [php : create root dir] ******************************************************************
ok: [192.168.179.23]
TASK [copy index.php] *************************************************************************
ok: [192.168.179.23]
TASK [start php] ******************************************************************************
ok: [192.168.179.23]
PLAY RECAP ************************************************************************************
192.168.179.23 : ok=11 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=1
192.168.179.25 : ok=8 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
192.168.179.27 : ok=13 changed=7 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
测试数据库连通性:之前files目录下的index.php文件
<?php
$link=mysqli_connect('192.168.179.27','root','Admin@123');
if($link) echo "<h1>Success!!</h1>";
else echo "Fail!!";
?>