用源码搭建lamp环境

上一篇有基础知识介绍和rpm包安装

1、安装mysql

image

用命令tar �Czxvf mysql***  -C  /usr/local 解压包

image image

查看安装说明文件

image

image

按照上面的步骤进行

image

image

image

向系统通告mysql的库文件

vim  /etc/ld.so.conf.d/mysql

image

查看mysql的库文件

image

向系统通告mysql的头文件

image

2、安装apache

解压到/usr/local/src

tar  -jxvf httpd***   -C /usr/local/src

进到 /usr/local/src/http*目录下检测环境

./configure --prefix=/usr/local/apache  --sysconfdir=/etc/httpd  --enable-so --enable-ssl  --with-z

image

make编译

make install 安装

image

 

image 

3、安装php

tar  -jxvf  php**     -C /usr/local/src

cd  /usr/local/src/php*

检测安装环境

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs  --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config  --enable-mbstring=all  

make编译

make  install  安装

image

 

vim /etc/httpd/httpd.conf编辑apache的配置文件

image

重启

image

1)测试apache

image

2)测试调用php

image

image

3)测试php调用mysql

image

image

你可能感兴趣的:(mysql,border,基础知识,target,blank)