【shell案例】一键部署wordpress网站

前言

此脚本是学员日常的练习脚本,在实训做过的每个项目都可以变成shell脚本,在不断的写脚本的过程中,克服对脚本的恐惧。

源码

#! /bin/bash
##搭建LAMP架构
yum -y install mariadb mariadb-server php php-mysql httpd unzip &> /dev/null
rm -rf /var/www/*
### 将wordpress移动到www目录下解压
mv /root/wordpress-4.9.4-zh_CN.zip /var/www/
cd /var/www/
unzip wordpress-4.9.4-zh_CN.zip &> /dev/null
#### 移动到html目录下,并给权限
mv wordpress html
chmod -R 777 html
#### httpd.conf提前配置好,直接复制过去即可
cp /root/httpd.conf /etc/httpd/conf/httpd.conf
systemctl restart httpd
systemctl start mariadb
### 创建需要的数据库
mysql -e "create database wordpress;"
mysql -e "grant all on *.* to wordpress@'%' identified by '123';"
mysql -e "exit"

后续

此脚本还需要进一步完善,在安装wordpress过程中出现的修改连接数据库的配置,以及apache的配置文件,都可以在脚本中体现,这样可以更好的练习文本操作。

提前准备好配置文件的方法也不错,优点就是不容易出错,缺点就是省事但没有成长。

你可能感兴趣的:(#,shell脚本天天练)