CentOS 7源碼安裝Apache

來源:互聯網
上載者:User

標籤:新解   安裝包   prefix   手冊   問題   clu   安裝apache   lease   XML   

一、官方安裝手冊http://httpd.apache.org/docs/2.4/install.html#customize

下載最新版http://httpd.apache.org/download.cgi#apache24

  httpd-2.4.27.tar.bz2

  解壓 tar xvf httpd-2.4.27.tar.bz2

  cd httpd-2.4.27

配置 ./configure  --prefix=安裝路徑 --with-apr和apr-util的目錄

編譯 make

安裝 make install

二、 問題及解決

問題a:configure: error: APR not found. Please read the documentation.

  解決:  需要安裝 apr 和apr-util

    安裝包地址:http://archive.apache.org/dist/apr/

    下載 apr-1.6.2.tar.bz2  和 apr-util-1.6.0.tar.bz2  

    解壓 tar xvf apr-1.6.2.tar.bz2

    cd apr-1.6.2

    配置安裝路徑 ./configure --prefix=/usr/local/apr

    編譯&安裝   make && make install

    解壓 tar xvf apr-util-1.6.0.tar.bz2

    cd apr-util-1.6.0

    配置安裝路徑 ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

    編譯&安裝   make && make install

問題b:xml/apr_xml.c:35:19: 致命錯誤:expat.h:沒有那個檔案或目錄  #include <expat.h>

  解決:缺少expat-devel包

     yum install expat-devel

問題c:configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/

  解決:  安裝pcre

    下載pcre-8.41.tar.gz

    解壓 pcre-8.41.tar.gz

    cd pcre-8.41

    配置安裝路徑 ./configure --prefix=/usr/local/pcre

    編譯&安裝   make && make install

問題d: make編譯過程中出現 /usr/local/apr/-util/lib/libaprutil-1.so: undefined reference to `XML_GetErrorCode‘

  解決:  我剛開始下的是apr-util-1.6.0.tar.gz 後來換成apr-util-1.6.0.tar.bz2就好使了,可能是包的問題。

    也可能是配置時需要--with-expat=builtin,我試了但對於我的錯誤來說並不好使,後來換了一個包終於好使了,浪費了好長時間。

    用apr-util-1.6.0.tar.bz2重新解壓安了一遍,回到httpd-2.4.27,make clean

    配置./configure --prefix=/usr/local/apache  --with-pcre=/usr/local/pcre/ --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util/ 

    編譯安裝make && make install 完成

 

CentOS 7源碼安裝Apache

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.