Linux+php+apache+oracle環境搭建之CentOS下安裝Apache_Linux

來源:互聯網
上載者:User

CentOS系統安裝的是Basic Server。安裝apache之前所必須的缺少的組件比較多,下面羅列下本次需要安裝的組件

apache - aprapache - apr-utilperl - pcreapache

官網下載Apache,下載地址:http://httpd.apache.org/download.cgi

下載穩定版本httpd-2.4.9.tar.gz,上傳到伺服器/usr/packages目錄下。

安裝Apache:

# tar -xvzf httpd-2.4.9.tar.gz# cd httpd-2.4.9# ./configure --prefix=/usr/local/apache --enable-module=so --enable-module=rewrite

檢查編譯環境報錯:

checking for APR... noconfigure: error: APR not found . Please read the documentation.

原因缺少APR(Apache Portable Runtime),需要下載apr與apr-util。

下載地址:http://apr.apache.org/download.cgi

下載apr-1.5.1.tar.gz、apr-util-1.5.3.tar.gz

安裝apr:

# tar -xvzf apr-1.5.1.tar.gz# cd apr-1.5.1# .configure# make# make install

安裝apr-util:

# tar -xvzf apr-util-1.5.3.tar.gz# cd apr-util-1.5.3# .configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr# make# make install

再次檢查編譯環境報錯:

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

缺少pcre,下載地址:http://sourceforge.net/projects/pcre/

安裝pcre:

# unzip -o pcre-8.35# cd pcre-8.35# ./configure --prefix=/usr/local/pcre# make# make install

再次檢查編譯環境時加上參數:

--with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre

沒有報錯:

# make# make install

安裝完畢。

這是我第一次安裝,缺少關聯關係的組件,下次安裝直接先安裝組件,最後安裝apache,這樣會順暢些吧。

啟動Apache

# cp /usr/local/apache/bin/apachectl /sbin/# apachectl start

配置隨系統啟動時啟動Apache服務

# vi /etc/rc.d/rc.local

在最後一行加上: /sbin/apachectl start

修改Apache預設網站目錄

修改/usr/local/apache/conf/httpd.conf檔案


改成


執行命令
# apachectl restart

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.