.下载所需软件包:
1 wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz 
2 wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz 
3 wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip 
4.      wget http://mirror.bjtu.edu.cn/apache//httpd/httpd-2.4.2.tar.gz
2.编译安装:
4 yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs
具体步骤如下:
  a:
        [root@slinkwang test]# yum remove apr-util-devel apr apr-util-mysql apr-docs apr-devel apr-util apr-util-docs
 [root@slinkwang test]# tar zxvf apr-1.4.5.tar.gz 
 [root@slinkwang test]# cd  apr-1.4.5 
 [root@slinkwang apr-1.4.5]# ./configure --prefix=/usr/local/apr 
 [root@slinkwang apr-1.4.5]# make && make install 
 
  b:
 [root@slinkwang test]# tar zxvf apr-util-1.3.12.tar.gz 
 [root@slinkwang test]# cd apr-util-1.3.12 
 [root@slinkwang apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
    [root@slinkwang apr-util-1.3.12]# make && make install

  c:
 [root@slinkwang test]#unzip -o pcre-8.10.zip 
 [root@slinkwang test]#cd pcre-8.10 
 [root@slinkwang pcre-8.10]#./configure --prefix=/usr/local/pcre 
 [root@slinkwang pcre-8.10]#make && make install

 
 d:    [root@slinkwang test]#tar zxvf httpd-2.4.2.tar.gz
       [root@slinkwang test]cd httpd-2.4.2
       [root@slinkwang httpd-2.4.2]./configure --prefix=/usr/local/apache --enable-so --enable-rewrite --with-mpm=worker --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre
       [root@slinkwang test]#make&&make install
       [root@slinkwang apache]/usr/local/apache/bin/apachectl -k start                      #linux启动apache命令
       [root@slinkwang conf]#ps -aux | grep httpd                                            #linux下查看apache进程
       [root@slinkwang pcre-8.10]#cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd  #把apache加入到系统启动
   
     
       [root@slinkwang apache]chown daemon.daemon -R /usr/local/apache/htdocs
       [root@slinkwang apache]chmod -R 700 /usr/local/apache/htdocs  #更改apache网站目录权限

       [root@slinkwang httpd-2.2.6]#cd /usr/local/apache   //进入apache的目录
       [root@slinkwang apache]#  cd conf/
       [root@slinkwang conf]#cp -a httpd.conf httpd.conf-     //备份apache配置文件                                    
       [root@slinkwang rc.d]#echo '/etc/init.d/httpd start' >> /etc/rc.d/rc.local //把apache加入开机自动启动 】
       [root@slinkwang apache]#service httpd restart
       [root@slinkwang ] vi /usr/local/apache/conf/httpd.conf   #编辑配置文件
找到:#ServerName www.68idc.cn:80
修改为:ServerName localhost:80
找到:DirectoryIndex index.html
修改为:DirectoryIndex index.html index.php
找到:Options Indexes FollowSymLinks
修改为:Options FollowSymLinks    #不显示目录结构

##########################################################################################

   
             
  
 
#######
 [root@slinkwang bin]# /usr/local/apache/bin/apachectl -l
 Compiled in modules:
  core.c
  mod_so.c
  http_core.c
  Event.c

 G:  [root@slinkwang bin]# /usr/local/apache/bin/apachectl -t
检查apache是否能正常运行,一般只要检查apache配置文件是否能正确就可以了其方法为执行命令显示:Syntax OK 一般都能正确启动apache

 

#参数说明
[*prefix 指定安装目录,便于程序维护,默认安装程序散布各个文件夹查找起来相当麻烦
  *enable-so 启用DSO(Dynamic Shared Object)机制。Apache的功能模块,分为静态模块和动态模块。静态模块是功能模块与Apache本事结合在一起;而动态模块则是程序需要调用时,才加载的模块。
*enable-rewrite 启用apache重写规则以及URL的重定向。
*withe-mpm=worker.。默认情况下,进程模型选择prefork。为什么要选择这个模型呢?主要是改变apache的性能。在未使用worker模式前,笔者的apache服务器过载,短信报警频繁,而改用worker模式后,apache的近成熟大大减少了,负载也大大降低,运行平稳。