ubutun apache源码完整安装过程
1.到这里下载apache的最新版2.4.3 http://httpd.apache.org/download.cgi#apache24
2.先安装apache需要的几个模块
下载所需软件包: wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip 具体步骤如下: a:解决apr not found问题>>>>>> [root@xt test]# tar -zxf apr-1.4.5.tar.gz [root@xt test]# cd apr-1.4.5 [root@xt apr-1.4.5]# ./configure --prefix=/usr/local/apr [root@xt apr-1.4.5]# make && make install b:解决APR-util not found问题>>>> [root@xt test]# tar -zxf apr-util-1.3.12.tar.gz [root@xt test]# cd apr-util-1.3.12 [root@xt apr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config [root@xt apr-util-1.3.12]# make && make install c:解决pcre问题>>>>>>>>> [root@xt test]#unzip -o pcre-8.10.zip [root@xt test]#cd pcre-8.10 [root@xt pcre-8.10]#./configure --prefix=/usr/local/pcre --disable-shared --with-pic [root@xt pcre-8.10]#make && make install在安装pcre时可能会出现g++没有安装,则用apt-get install g++安装完g++,
如果还出现libtool: link: Fatal configurationerror. make[1]: *** [libpcrecpp.la] 错误 1 则加上参数--diable-shared
3.接下来就是安装apache了
tar zxvf httpd-2.4.3.tar.gz
./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre make;make install安装成功。
相关推荐
liuhangtiant 2020-10-20
duckes 2020-05-17
byourb 2020-01-11
咻咻ing 2020-01-08
咻咻ing 2019-12-17
亦碎流年 2019-12-05
fengtaijun 2013-08-08
zhoujk00 2014-03-12
单调的低调 2015-01-16
Neptune 2019-11-11
泥淖 2019-11-09
hairetz 2015-09-07
RuoShangM 2019-10-23
xiaohanshasha 2011-06-01
eroshn 2019-10-27
artwebs 2011-02-17
TLROJE 2010-08-26