Ansible实战:批量部署多台LAMP(Linux、Apache、Mysql、PHP)环境
作者:互联网
先简单介绍下Playbook常用文件夹作用:
- files:存放需要同步到异地服务器的源码文件及配置文件
- handlers:当服务的配置文件发生改变时需要进行的操作,比如:重启服务、重新加载配置文件,handlers处理程序
- meta:角色定义,可留空
- tasks:需要进行的执行的任务
- templates:用于执行lamp安装的模板文件, 一般为脚本
- vars:本次安装定义的变量
搭建思路
我们搭建LAMP架构,大概需要:
- yum 安装服务
- service 启动服务
- copy:把网站拷贝过去
在playbooks中定义任务:
name:task description #任务描述信息
module_name:module_args #需要使用的模块名字
使用Playbook批量部署多台LAMP环境步骤
我们可以在ansible服务器上安装LAMP环境,然后,再将配置文件通过ansible拷贝到受控主机上。
#第一步:安装httpd软件
[root@k8s-master ansible]# yum install -y httpd
#第二步:安装mysql
[root@k8s-master ansible]# yum install -y mariadb-server mariadb #安装mysql服务
[root@k8s-master ~]# mkdir -p /mysqldata/data/ #创建目录作为数据存放的位置
[root@k8s-master ~]# chown -R mysql:mysql /mysqldata/ #授权
[root@k8s-master ~]# vim /etc/my.cnf
[mysqld]
#datadir=/var/lib/mysql
datadir=/mysqldata/data #将默认配置修改为自定义配置
[root@k8s-master ~]# systemctl start mariadb #启动服务
#第三步:安装PHP和php-mysql模块
[root@k8s-master ~]# yum -y install php php-mysql
#第四步:提供php的测试页
[root@k8s-master ~]# vim /var/www/html/index.php
[root@k8s-master ~]# cat /var/www/html/index.php
<?php
phpinfo();
?>
#第五步:重启httpd服务
[root@k8s-master ~]# systemctl reload httpd #启动httpd服务
#第六步:定义组名
[root@k8s-master ~]# vim /etc/ansible/hosts
[web-servers]
192.168.133.11
192.168.133.12
#第七步:将公钥信息复制到被控制节点,ansible和两个节点间通过ssh进行连接
[root@k8s-master ~]# ssh-keygen
[root@k8s-master ~]# ssh-copy-id root@192.168.133.11
[root@k8s-master ~]# ssh-copy-id root@192.168.133.12
#第八步:使用playbook创建一个LAMP构建的任务
#1、创建相关文件
[root@k8s-master ~]# mkdir -pv /etc/ansible/lamp/roles/{prepare,httpd,mysql,php}/{tasks,files,templates,vars,meta,default,handlers}
#将上面搭建成功的LAMP环境的httpd和mysql的配置文件拷贝至对应目录下
[root@k8s-master ~]# cd /etc/ansible/
[root@k8s-master ansible]# cp /etc/httpd/conf/httpd.conf lamp/roles/httpd/files/
[root@k8s-master ansible]# cp /etc/my.cnf lamp/roles/mysql/files/
[root@k8s-master ansible]# 写prepare(前期准备)角色的playbooks
[root@k8s-master ansible]# vim lamp/roles/prepare/tasks/main.yml
[root@k8s-master ansible]# cat lamp/roles/prepare/tasks/main.yml
- name: delete yum config
shell: rm -rf /etc/yum.repos.d/* #删除原有的yum配置文件
- name: provide yumrepo file
shell: wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo #下载新的yum配置文件
- name: clean the yum repo
shell: yum clean all #清除原有的yum缓存信息
- name: clean the iptables
shell: iptables -F #清除原有防火墙规则,不然后可能上不了网
[root@k8s-master ansible]#
#2、构建httpd的任务
[root@k8s-master ansible]# cd /etc/ansible/lamp/roles/
[root@k8s-master roles]# mv /var/www/html/index.php httpd/files/
[root@k8s-master roles]# vim httpd/tasks/main.yml
[root@k8s-master roles]# cat httpd/tasks/main.yml
[root@k8s-master roles]# cat httpd/tasks/main.yml
- name: web server install
yum: name=httpd state=present #安装httpd服务
- name: provide test page
copy: src=index.php dest=/var/www/html #提供测试页
- name: delete apache config
shell: rm -rf /etc/httpd/conf/httpd.conf #删除原有的apache配置文件,如果不删除,下面的copy任务是不会执行的,因为当源文件httpd.conf和目标文件一样时,copy命令是不执行的。如果copy命令不执行,那么notify将不调用handler。
- name: provide configuration file
copy: src=httpd.conf dest=/etc/httpd/conf/httpd.conf #提供httpd的配置文件
notify: restart httpd #当前面的copy复制成功后,通过notify通知名字为restart httpd的handlers运行
#3、构建httpd的handlers
[root@k8s-master roles]# vim httpd/handlers/main.yml
[root@k8s-master roles]# cat httpd/handlers/main.yml
- name: restart httpd
service: name=httpd enabled=yes state=restarted
[root@k8s-master roles]#
#4、部署MariaDB数据库
[root@k8s-master roles]# cd /etc/ansible/lamp/roles/
[root@k8s-master roles]# vim mysql/tasks/main.yml
[root@k8s-master roles]# cat mysql/tasks/main.yml
- name: install the mysql
yum: name=mariadb-server state=present #安装mysql服务
- name: mkdir date directory
shell: mkdir -p /mysqldata/data #创建挂载点目录
- name: provide configration file
copy: src=my.cnf dest=/etc/my.cnf #提供mysql的配置文件
- name: chage the owner
shell: chown -R mysql:mysql /mysqldata/ #更改属主和属组
- name: start mariadb
service: name=mariadb enabled=yes state=started #启动mysql服务
#5、构建PHP的任务
[root@k8s-master roles]# vim php/tasks/main.yml
- name: install php
yum: name=php state=present #安装php
- name: install php-mysql
yum: name=php-mysql state=present #安装php与mysql交互的插件
#6、定义整个任务
[root@k8s-master roles]# cd /etc/ansible/lamp/roles/
[root@k8s-master roles]# vim site.yml
[root@k8s-master roles]# cat site.yml
- name: LAMP build
remote_user: root
hosts: web-servers
roles:
- prepare
- mysql
- php
- httpd
注意:所有yml的配置文件中,空格必须严格对齐
部署
[root@k8s-master roles]# ansible-playbook -i /etc/ansible/hosts /etc/ansible/lamp/roles/site.yml
标签:httpd,name,roles,LAMP,Ansible,master,Mysql,k8s,root 来源: https://www.cnblogs.com/Torres-tao/p/16326501.html