linux系统ansible工具的剧本发布workpress剧本编写

2024-02-02 12:52

本文主要是介绍linux系统ansible工具的剧本发布workpress剧本编写,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

workpress剧本编写

发布workpress

整体剧本编写
准备环境
上传workpress压缩包到/root目录编写/root/nginx.conf文件,下面代码写入http模块的server中
vim /root/nginx.conflocation / {root   /usr/share/nginx/html/wordpress/;index  index.php index.html index.htm;}
location ~ \.php$ {root           html;fastcgi_pass   127.0.0.1:9000;fastcgi_index  index.php;fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/wordpress/$fastcgi_script_name;include        fastcgi_params;}
剧本编写
vim workpress.yaml---
- hosts: 10.12.153.110remote_user: rootvars:tasks:- name: 安装数据库yum: name=mariadb-server,mariadb state=present- name: 安装phpyum: name=http://rpms.remirepo.net/enterprise/remi-release-7.rpm state=present - name: 安装phpyum: name=php80-php-xsl,php80-php,php80-php-cli,php80-php-devel,php80-php-gd,php80-php-pdo,php80-php-mysql,php80-php-fpm state=present- name: 安装nginxyum: name=epel-release,nginx state=present- name: 启动环境service: name=nginx state=started enabled=yes- name: 启动环境service: name=php80-php-fpm state=started enabled=yes- name: 启动数据库service: name=mariadb state=started enabled=yes- name: 创建用户并授权shell: mysql -e "create database wordpress;grant all on wordpress.* to 'wordpress'@'localhost' identified by '0';grant all on wordpress.* to 'wordpress'@'%' identified by '0';flush privileges"- name: 拷贝nginx配置文件template: src=/root/nginx.conf dest=/etc/nginx/nginx.conf backup=yes- name: 安装解压工具yum: name=unzip state=present- name: 上传wordpress源码包unarchive: src=wordpress-6.2.2-zh_CN.tar.gz dest=/usr/share/nginx/html  mode=777 owner=nginx group=nginx- name: 重启nginxservice: name=nginx state=restarted
浏览器安装workpress
数据库名字:workpress
用户名字:workpress
用户密码:0
数据库地址:数据库安装的服务器ip
角色剧本编写
ansible-galaxy init php
ansible-galaxy init mariadb
ansible-galaxy init nginx
ansible-galaxy init wordpress
touch roles.yaml
roles.yaml
vim roles.yaml---
- hosts: ipremote_user: rootroles:- nginx- php- mariadb- wordpress#如果需要数据库和web分离可以这样写
#---
#- hosts: web端ip
#  remote_user: root
#  roles:
#    - nginx
#    - php
#    - wordpress
#- hosts: db端ip
#  remote_user: root
#  roles:
#    - mariadb
php目录
vim php/tasks/main.yml ---
# tasks file for php
- name: 卸载phpyum: name=php80-php-xsl,php80-php,php80-php-cli,php80-php-devel,php80-php-gd,php80-php-pdo,php80-php-mysql,php80-php-fpm state=absent- name: 安装php源yum: name=http://rpms.remirepo.net/enterprise/remi-release-7.rpm state=present- name: 安装phpyum: name=php80-php-xsl,php80-php,php80-php-cli,php80-php-devel,php80-php-gd,php80-php-pdo,php80-php-mysql,php80-php-fpm state=present- name: 启动环境service: name=php80-php-fpm state=started enabled=yes
nginx目录
vim nginx/template/nginx.comfworker_processes  1;events {worker_connections  1024;
}http {include       mime.types;default_type  application/octet-stream;sendfile        on;keepalive_timeout  65;server {listen       80;server_name  localhost;location / {root   /usr/share/nginx/html/wordpress/;index  index.php index.html index.htm;}error_page   500 502 503 504  /50x.html;location = /50x.html {root   html;}location ~ \.php$ {root           html;fastcgi_pass   127.0.0.1:9000;fastcgi_index  index.php;fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/wordpress/$fastcgi_script_name;include        fastcgi_params;}}
}
vim nginx/tasks/main.yml ---
# tasks file for nginx
- name: 卸载nginxyum: name=nginx state=absent
- name: 安装nginxyum: name=epel-release,nginx state=present
- name: 拷贝nginx.conf文件template: src=nginx.conf dest=/etc/nginx/nginx.conf backup=yes
- name: 启动nginxservice: name=nginx state=started
mariadb目录
vim mariadb/tasks/main.yml ---
# tasks file for mariadb
- name: 卸载数据库yum: name=mariadb-server,mariadb state=absent
- name: 安装数据库yum: name=mariadb-server,mariadb state=present
- name: 启动数据库service: name=mariadb state=started enabled=yes
- name: 删除数据库shell:  mysql -e "drop database wordpress;"
- name: 创建用户并授权shell: mysql -e "create database wordpress;grant all on wordpress.* to 'wordpress'@'localhost' identified by '0';grant all on wordpress.* to 'wordpress'@'%' identified by '0';flush privileges"
wordpress目录
上传wordpress压缩包到wordpress/files/
vim wordpress/tasks/main.yml ---
# tasks file for wordpress
- name: 安装工具yum: name=unzip state=present
- name: 上传wordpress源码包unarchive: src=wordpress-6.2.2-zh_CN.tar.gz dest=/usr/share/nginx/html  mode=777 owner=nginx group=nginx
浏览器安装workpress
数据库名字:workpress
用户名字:workpress
用户密码:0
数据库地址:数据库安装的服务器ip

这篇关于linux系统ansible工具的剧本发布workpress剧本编写的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/670766

相关文章

VScode连接远程Linux服务器环境配置图文教程

《VScode连接远程Linux服务器环境配置图文教程》:本文主要介绍如何安装和配置VSCode,包括安装步骤、环境配置(如汉化包、远程SSH连接)、语言包安装(如C/C++插件)等,文中给出了详... 目录一、安装vscode二、环境配置1.中文汉化包2.安装remote-ssh,用于远程连接2.1安装2

基于Go语言实现一个压测工具

《基于Go语言实现一个压测工具》这篇文章主要为大家详细介绍了基于Go语言实现一个简单的压测工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录整体架构通用数据处理模块Http请求响应数据处理Curl参数解析处理客户端模块Http客户端处理Grpc客户端处理Websocket客户端

C#实现系统信息监控与获取功能

《C#实现系统信息监控与获取功能》在C#开发的众多应用场景中,获取系统信息以及监控用户操作有着广泛的用途,比如在系统性能优化工具中,需要实时读取CPU、GPU资源信息,本文将详细介绍如何使用C#来实现... 目录前言一、C# 监控键盘1. 原理与实现思路2. 代码实现二、读取 CPU、GPU 资源信息1.

Linux中shell解析脚本的通配符、元字符、转义符说明

《Linux中shell解析脚本的通配符、元字符、转义符说明》:本文主要介绍shell通配符、元字符、转义符以及shell解析脚本的过程,通配符用于路径扩展,元字符用于多命令分割,转义符用于将特殊... 目录一、linux shell通配符(wildcard)二、shell元字符(特殊字符 Meta)三、s

Linux之软件包管理器yum详解

《Linux之软件包管理器yum详解》文章介绍了现代类Unix操作系统中软件包管理和包存储库的工作原理,以及如何使用包管理器如yum来安装、更新和卸载软件,文章还介绍了如何配置yum源,更新系统软件包... 目录软件包yumyum语法yum常用命令yum源配置文件介绍更新yum源查看已经安装软件的方法总结软

linux报错INFO:task xxxxxx:634 blocked for more than 120 seconds.三种解决方式

《linux报错INFO:taskxxxxxx:634blockedformorethan120seconds.三种解决方式》文章描述了一个Linux最小系统运行时出现的“hung_ta... 目录1.问题描述2.解决办法2.1 缩小文件系统缓存大小2.2 修改系统IO调度策略2.3 取消120秒时间限制3

Linux alias的三种使用场景方式

《Linuxalias的三种使用场景方式》文章介绍了Linux中`alias`命令的三种使用场景:临时别名、用户级别别名和系统级别别名,临时别名仅在当前终端有效,用户级别别名在当前用户下所有终端有效... 目录linux alias三种使用场景一次性适用于当前用户全局生效,所有用户都可调用删除总结Linux

Linux:alias如何设置永久生效

《Linux:alias如何设置永久生效》在Linux中设置别名永久生效的步骤包括:在/root/.bashrc文件中配置别名,保存并退出,然后使用source命令(或点命令)使配置立即生效,这样,别... 目录linux:alias设置永久生效步骤保存退出后功能总结Linux:alias设置永久生效步骤

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

在C#中获取端口号与系统信息的高效实践

《在C#中获取端口号与系统信息的高效实践》在现代软件开发中,尤其是系统管理、运维、监控和性能优化等场景中,了解计算机硬件和网络的状态至关重要,C#作为一种广泛应用的编程语言,提供了丰富的API来帮助开... 目录引言1. 获取端口号信息1.1 获取活动的 TCP 和 UDP 连接说明:应用场景:2. 获取硬