在LINUX系統上安裝Apache
我寫這個,不是說我寫的有多好,我只想說,我真的繞太多的彎子了,希望能幫到其他人
1. 下載(網址很多,喜歡就行)
2. 安裝
步驟1:解壓:tar –xvfz httpd-2.4.3.tar.gz
步驟2:進入解壓後的目錄:cd httpd-2.4.3.tar.gz
步驟3:建立Makefile,並將Apache安裝到指定目錄下:./configure –prefix=/~/Downloads/Apache
第一次報錯,提示:
Checking for APR…no
Configure :error:APR not found.。。。。。
這個時候就需要下載並安裝APR
下載鏈接:
安裝過程:
a.解壓:tar –xvfz apr -1.5.1.tar.gz
b.進入解壓後的目錄:cd apr-util-1.5.1
c.建立Makefile,並將apr安裝到指定目錄下:./configure –prefix=/~/Downloads/Apr
d.make
e.make install
完成之後,再回到步驟3,重寫步驟3,重新安裝Apache:
步驟3:./configure –prefix=/~/Downloads/Apache/ --with-apr=/~/Downloads/Apr
第二次報錯,提示:
Checking for APR-util…no
Configure :error:APR-util not found.。。。。。
這個時候就需要下載並安裝APR-util
下載鏈接:
安裝過程:
a.解壓:tar –xvfz apr-util-1.5.1.tar.gz
b.進入解壓後的目錄:cd apr-util-1.5.1
c.建立Makefile,並將apr安裝到指定目錄下:./configure –prefix=/~/Downloads/Apr-util
d.make
e.make install
完成之後,再回到步驟3,重寫步驟3,重新安裝Apache:
步驟3:./configure –prefix=/~/Downloads/Apache/ --with-apr=/~/Downloads/Apr --with-apr=/~/Downloads/Apr-util
第三次提示錯誤:
下載pcre-8.32.tar.gz,如上,繼續安裝
最後,我們再安裝apache2
好辛苦啊!累死了!想哭
還好,我有另外一個更簡單的方法:
看好了!
第1步:在終端輸入更新檢查命令: sudo apt-get update
第2步:sudo apt-get install apache2
在瀏覽器輸入127.0.0.1,出現如下窗口:
推薦閱讀: