利用×××LAMP主要有以下三个步骤:

     1. ./configure(脚本)--prefix(指明安装路径)--sysconfir(安装完后配置脚本配置路径)
     2. Make (编译成二进制文件或模块)
     3. make install
 
这些服务的源代码我们可以试着在它的官网上下载
    Apache (官网)
www.apache.org
     Mysql (官网)www.mysql.com
     Php (官网)  www.php.net
 
 一、编译安装mysql
 
[root@MueYing ~]# cd /home/
 [root@MueYing home]# tar -zxvf mysql-5.5.15-linux2.6-i686.tar.gz -C /usr/local/
[root@MueYing home]# cd /usr/local/
 [root@MueYing local]# ln -s mysql-5.5.15-linux2.6-i686 mysql
[root@MueYing ~]# groupadd -r mysql 
[root@MueYing ~]# useradd -r -g mysql -s /sbin/nologin -M mysql
 [root@MueYing ~]# cd /usr/local/mysql
 [root@MueYing mysql]# chown -R mysql:mysql . 
[root@MueYing mysql]# scripts/mysql_install_db --user=mysql
 [root@MueYing mysql]# cp support-files/my-medium.cnf /etc/my.cnf
[root@MueYing mysql]# cp support-files/mysql.server /etc/init.d/mysqld 
[root@MueYing mysql]# cd /usr/include/
 [root@MueYing include]# ln -s /usr/local/mysql/include mysql 
[root@MueYing include]# chkconfig --list |grep mysqld
 mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off

二、接着我们来安装apache 
[root@MueYing home]# tar -jxvf httpd-2.2.19.tar.bz2 -C /usr/src

[root@MueYing httpd-2.2.19]# ./configure --help |less 

--prefix=安装路径
--sysconfdir=配置脚本存放位置
--enable-so 开启dso(动态共享对象)
--with-z 使用zlib
--enable-ssl 加密
[root@MueYing httpd-2.2.19]# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-so --with-z --enable-ssl
[root@MueYing apache]# cd /usr/src/httpd-2.2.19/ 

[root@MueYing httpd-2.2.19]# less INSTALL
 $ ./configure --prefix=PREFIX
 $ make
 $ make install
 $ PREFIX/bin/apachectl start apache启动方法
 

启动apache
 [root@MueYing httpd-2.2.19]# cd /usr/local/apache/ 

[root@MueYing apache]# ./bin/apachectl start 

[root@MueYing apache]# netstat -tupln |grep http 

tcp 0 0 :::80 :::* LISTEN 19115/httpd
 [root@MueYing apache]# ./bin/apachectl stop 

 [root@MueYing apache]# netstat -tupln |grep http
 [root@MueYing apache]# ./bin/apachectl start

 

三、php的源码安装
 
尝试使用php测试连接mysql
 [root@MueYing ~]# cd /usr/local/apache/htdocs/
[root@MueYing htdocs]# vim index.php 
<html><body><h1>It works!</h1></body></html>
 <?php
 $link=mysql_connect('127.0.0.1','root','');
 if ($link)
 echo "connect success!!!";
 else
 echo "connect failed!!! "
 ?>

 

当关闭数据库时再用客户端测试:

[root@MueYing htdocs]# service mysqld stop

 
此时php便安装成功了
Lamp的源码的搭建也坐完了,我们接着就可以做应用了