码迷,mamicode.com
首页 > Web开发 > 详细

CentOS6.5_X64 下Apache Httpd安装配置

时间:2014-11-03 19:31:36      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:style   http   color   ar   os   sp   on   art   bs   

一、下载 
1、登录http://httpd.apache.org。 
2、下载2.4.7版本。

#cd /opt
  #wget http://mirror.esocc.com/apache//httpd/httpd-2.4.7.tar.gz

二、安装 
1、安装apr、apr-util、pcre

登录http://www.apache.org,下载apr-1.5.0、apr-util-1.5.3
 #tar zxvfv apr-1.5.0
 #cd apr-1.5.0
 #./configure --prefix=/usr/local/apr
 #make
 #mkae install

 #tar apr-util-1.5.3
 #cd apr-util-1.5.3
 #./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/bin/apr-1-config
 #make
 #make install

 登录http://www.pcre.org/,下载pcre-8.34
 #tar  zxvf pcre-8.34.tar.gz
 #cd prec-8.34
 #./configure --prefix=/usr/local/pcre
 #make
 #make install

2、安装httpd

#tar zxvf httpd-2.4.7.tar.gz
 #cd httpd-2.4.7
 #./configure --prefix=/usr/local/apache2  --enable-so= --with-apr=/usr/local/apr                   --with-apr-util=/usr/local/apr-util/                    --with-pcre=/usr/local/pcre                  --enable-so
  #make
  #make install

3、测试

#cd /usr/local/apache/bin
#apachectl start
打开浏览器,访问http://127.0.0.1。如果出现apache test page,OK
#netstat -anp | grep httpd
出现80口被监听。

完成。


CentOS6.5_X64 下Apache Httpd安装配置

标签:style   http   color   ar   os   sp   on   art   bs   

原文地址:http://my.oschina.net/u/593517/blog/340289

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!