CentOS6.4_X64下Apache Httpd安装配置
时间:2014-12-05 18:16 来源:linux.it.net.cn 作者:IT
一、下载
1、登录http://httpd.apache.org。
2、下载2.4.7版本。
1
2
#cd /opt
#wget http://mirror.esocc.com/apache//httpd/httpd-2.4.7.tar.gz
二、安装
1、安装apr、apr-util、pcre
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
登录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
1
2
3
4
5
6
7
8
#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、测试
1
2
3
4
5
#cd /usr/local/apache/bin
#apachectl start
打开浏览器,访问http://127.0.0.1。如果出现apache test page,OK
#netstat -anp | grep httpd
出现80口被监听。
完成。
(责任编辑:IT)
一、下载
二、安装
2、安装httpd
3、测试
完成。 (责任编辑:IT) |