shell 自动安装LAMP
LNMP脚本安装示例
通过if语句和变量实现一件安装LAMP环境的脚本:
一键源码安装LAMP脚本, 先分解脚本的各个功能:
打印菜单
1)安装apache WEB服务器
2)安装mysqldb服务器
3)安装php服务器
4)整合LAMP架构并启动服务器
1.Apache服务器安装部署
下载httpd-2.4.46.tar.gz版本 下载URL , 解压 , 进入安装目录 , configgure;make; make install
官网链接地址:https://downloads.apache.org//httpd/httpd-2.4.46.tar.gz
阿里云连接地址:https://mirrors.aliyun.com/apache/httpd/httpd-2.4.46.tar.gz
教程地址:https://help.aliyun.com/knowledge_detail/41114.html
教程地址:https://blog.csdn.net/helloworld19970916/article/details/81059299
2.mysql服务器安装
下载 mysql-5.7.23.tar.gz 版本, 下载URL , 解压, 进入安装目录 , configure;make;make install
链接地址:https://cdn.mysql.com/archives/mysql-5.7/mysql-5.7.23.tar.gz
搜狐连接地址:http://mirrors.sohu.com/mysql/MySQL-5.7/mysql-5.7.23.tar.gz
3.PHP服务器安装
下载 php-7.4.9.tar.gz版本 下载URL , 解压 , 进入安装目录 , configure;make; make install
连接地址:https://www.php.net/distributions/php-7.4.9.tar.gz
搜狐链接地址:http://mirrors.sohu.com/php/php-7.4.9.tar.gz
4.LAMP架构的整合和服务器启动
/usr/local/apache2/bin/apachectl start
Vim htdocs/index.php
<?php
phpinfo();
?>
一、在/data/shell/下新建auto_lamp.sh