<p>今天从Apache官网上http://httpd.apache.org/下载httpd web服务器,由于我的虚拟机上之前安装过,我先yum remove httpd进行卸载,然后重新安装。我采用的是源码安装,先进行./configure --prefix=/usr/local/apahce --enable-so ,提示以下错误:</p><pre class="brush:bash;toolbar:false">configure:error:APRnotfound.Pleasereadthedocumentation.</pre><p>解决办法</p><pre class="brush:bash;toolbar:false">wgethttp://apache.freelamp.com/apr/apr-1.4.2.tar.gz下载apr ./configure–prefix=/usr/local/apr make makeinstall wgethttp://apache.freelamp.com/apr/apr-util-1.3.10.tar.gz ./configure–prefix=/usr/local/web/apr-util–with-apr=/usr/local/apr make makeinstall</pre><p>3 ../configure仍提示APR-util not found,增加--with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util后出现</p><pre class="brush:bash;toolbar:false">configure:error:pcre-configforlibpcrenotfound.PCREisrequiredandavailablefromhttp://pcre.org/ #./configure–help|greppcre --with-pcre=PATHUseexternalPCRElibrary</pre><p>下载:http://sourceforge.net/projects/pcre</p><p>下载地址二:http://ftp.exim.llorien.org/pcre/</p><pre class="brush:bash;toolbar:false">#unzip-opcre-8.10.zip #cdpcre-8.10 #./configure--prefix=/usr/local/pcre #make #makeinstall</pre><p>最后安装apahce:</p><pre class="brush:bash;toolbar:false">./configure--prefix=/usr/local/apache--enable-rewrite--enable-so--with-apr=/usr/local/apr--with-apr-util=/usr/local/apr-util--with-pcre=/usr/local/pcre make makeinstall</pre>
T:0.023306s,M:245.82 KB
返回顶部 留言