Apache http server linux 安裝過程說明
https://blog.csdn.net/sundenskyqq/article/details/24733923
PS:Apache http server 須要依賴 apr、apr-util、pcre,所以要先下載和安裝這三個東東。
而apr-util和pcre又依賴apr,所以要先安裝apr。
步驟:
1、 下載apr、apr-util、pcre、Apache httpserver
地址例如以下:
apr/ apr-util: http://apr.apache.org/download.cgi
pcre: http://www.pcre.org/
apache http server: http://httpd.apache.org/download.cgi#apache24
2、 將文件上傳到服務器(linux)
比如文件夾:/usr/mytest/source
3、 分別解壓四個文件
比如解壓到當前文件夾:
解壓apr : tar –vxf apr-1.5.0.tar.gz(在source文件夾下會多出一個文件夾apr-1.5.0)
解壓apr : tar –vxf apr-util-1.5.3.tar.gz(在source文件夾下會多出一個文件夾apr-util-1.5.3)
解壓pcre : tar –vxf pcre-8.33.tar.gz(在source文件夾下會多出一個文件夾pcre-8.33)
解壓Apache http server:tar –vxf httpd-2.4.9.tar.gz(在source文件夾下會多出一個文件夾httpd-2.4.9)
PS:註意,我下載的都是tar.gz格式的,假設是其它格式的,請參考linux關於解壓方面的相關命令。
4、 安裝apr
切換到apr-1.5.0文件夾下,依次運行命令:
(1)./configure--prefix=/usr/mytest /soft/apr (該命令的意思是配置安裝文件。指定安裝路徑為絕對路徑)
(2)make (編譯)
(3)make install(安裝)
5、 安裝apr-util
切換到apr-util-1.5.3文件夾下。依次運行命令:
(1)./configure--prefix=/usr/mytest /soft/apr-util --with-apr=/usr/mytest
/soft/apr/bin/apr-1-config
(該命令的意思是配置安裝文件,指定安裝路徑為絕對路徑。且須要依賴apr。否則將會出錯)
(2)make (編譯)
(3)make install(安裝)
6、 安裝pcre
切換到pcre-8.33文件夾下,依次運行命令:
(1)./configure--prefix=/usr/mytest /soft/pcre --with-apr=/usr/mytest
/soft/apr/bin/apr-1-config
(該命令的意思是配置安裝文件。指定安裝路徑為絕對路徑;且須要依賴apr,否則將會出錯)
(2)make (編譯)
(3)make install(安裝)
7、 安裝Apache httpserver
切換到httpd-2.4.9文件夾下,依次運行命令:
(1)./configure--prefix=/usr/mytest /soft/httpd
--with-apr=/usr/mytest/soft/apr/bin/apr-1-config --with-apr=/usr/mytest/soft/apr-util/bin/apu-1-config
--with-apr=/usr/mytest /soft/pcre/bin/pcre-config
(該命令的意思是配置安裝文件,指定安裝路徑為絕對路徑;且須要依賴apr/apr-util/pcre。否則將會出錯)
(2)make (編譯)
(3)make install(安裝)
至此安裝完畢並結束。
8、 啟動測試:
(1) 須要首先改動配置文件:(/usr/mytest /soft/httpd/conf/httpd.conf)
ServerName (如127.0.0.1:1025)
Listener (如127.0.0.1:1025)
PS:假設配置文件裏Listen定義的是默認的80port(或1024以下)。那麽啟動Apache將須要root權限以將它綁定在特權port上。
參考網址:http://www.jinbuguo.com/apache/menu22/invoking.html
(2) 切換到/usr/mytest /soft/httpd/bin文件夾下。
運行:./apachectl –k start
(3) 到瀏覽器中輸入ServerName配置的屬性值。得到:It works!
9、 共享服務器使用說明:
在httpd/htdocs 文件夾以下添加文件夾、文件等,瀏覽器中就可以查看。
Apache http server linux 安裝過程說明