创建搭建环境
1、下载APache软件
[[email protected] ~]# yum install -y httpd
2、启动 httpd,并设置开机自启动
[[email protected] ~]# systemctl start httpd
[[email protected] ~]# systemctl enable httpd
3、安装php软件:功能是用来解释后台php语言代码
[[email protected] ~]# yum install -y php
4、安装数据库软件、数据库服务端、数据库登录客户端
[[email protected] ~]# yum install -y mariadb-server mariadb
5、启动数据库服务端
[[email protected] ~]# systemctl start mariadb.service
[[email protected] ~]# systemctl enable mariadb.service
这时候数据库没有密码也可以进去,为了安全装一个安全插件专门设置密码用
[[email protected] ~]# mysql_secure_installation
登录数据库
[[email protected] ~]# mysql -uroot -p123
6、安装php 和 mysql数据库对话的插件
[[email protected] ~]# yum install -y php-mysql
重启网站,这个插件生效
[[email protected] ~]# systemctl restart httpd
附):以上的软件集合也可以一条命令装置
[[email protected] ~]# yum -y install httpd mariadb-server mariadb php php-mysql gd php-gd
LAMP环境已经搭建好了,上传H5项目测试下
1、准备一个目录存放代码
[[email protected] ~]# mkdir -p /webroot/tianyun
2、这是上传的项目
3、解压项目
4、把这个解压后的项目 CP 到 刚才存放代码的文件夹里头
5、源码传过来了,然后需要在数据库里准备一个数据
登录数据库并创建一个数据库文件
6、配置网站虚拟目录:就是告诉Apache程序我的代码放到哪里了
[[email protected] ~]# vim /etc/httpd/conf.d/tianyun.conf
<VirtualHost *:80>
ServerName www.tianyun.com
ServerAlias tianyun.com
DocumentRoot /webroot/tianyun
</VirtualHost>
<Directory "webroot/tianyun">
Require all granted
</Directory>
7、重启网站
8、访问下该网站
原文地址:http://blog.51cto.com/kangxi/2117167