Loading... ## 前言 ## OS:CentOS 7 x86_64 LAMP: 简单理解为 Linux + Apache + Mysql/MariaDB + PHP 本文通过yum简单搭建lamp环境; ---------- ## 一: 安装Apache ## 首先对CentOS进行更新 ~]# yum update -y <div class="tip inlineBlock warning"> 如果更新很慢,推荐切换阿里源或者163源<br>阿里云源:http://mirrors.aliyun.com/repo/Centos-7.repo <br>163源:http://mirrors.163.com/.help/CentOS7-Base-163.repo <br>自行替换到源文件夹下 </div> **安装apache** ~]# yum install httpd -y **启动apache服务** ~]# systemctl start httpd.service **设置开机自启动** ~]# systemctl enable httpd.service 此时访问主机的IP地址,将会打开apache的欢迎页,如下图: ![testing 123.png][1] 至此apache安装完毕 ---------- ## 二: 安装PHP ## <div class="tip inlineBlock warning"> CentOS 7系统默认提供的是PHP 5.4 </div> 安装PHP 5.4,     包名为php,连接数据库的模块是php-mysql ~]# yum install php php-mysql -y 如果需要安装其他模块,如下操作: ~]# yum list all php-* ~]# 查询所有模块 ~]# yum install 模块名 <div class="tip inlineBlock warning"> 安装PHP后,需要重启httpd服务 </div> ~]# systemctl restart httpd.service 至此,PHP的简单安装完毕 ---------- ## 三: 安装MariaDB ## 在CentOS 7上,一般默认是安装了MariaDB的,下面主要是针对没有安装的情况 ~]# yum install mariadb mariadb-server -y 安装mariadb mariadb-server ~]# mysql_secure_installation 进行数据库安全设置 ![安全设置][2] ~]# systemctl start mariadb.service 启动mariadb服务 ~]# systemctl enable mariadb.service 设置开机运行服务 ## 四: 测试 ## **详见:**下面这篇文章 <div class="preview"> <div class="post-inser post box-shadow-wrap-normal"> <a href="https://blog.beijixs.cn/archives/13/" target="_blank" class="post_inser_a no-external-link no-underline-link"> <div class="inner-image bg" style="background-image: url(https://blog.beijixs.cn/usr/themes/handsome/assets/img/sj/1.jpg);background-size: cover;"></div> <div class="inner-content" > <p class="inser-title">CentOS 7安装php(yum安装和编译安装)</p> <div class="inster-summary text-muted"> 方式一:yum安装php,一般是5.4的版本 在LAMP中,php需要的基本包有:php,php-mysql ... </div> </div> </a> <!-- .inner-content #####--> </div> <!-- .post-inser ####--> </div> ## 五: 脚本实现自动化安装 ## <div class="hideContent">此处内容需要评论回复后(审核通过)方可阅读。</div> ---------- END [1]: https://blog.beijixs.cn/usr/uploads/2019/09/3827967812.png [2]: https://blog.beijixs.cn/usr/uploads/2019/09/20190914.png 最后修改:2019 年 09 月 30 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 0 如果觉得我的文章对你有用,请随意赞赏
1 条评论
学习了