導語:
Apache(音譯為阿帕契)是世界使用排名第一的Web伺服器軟體。它可以運行在幾乎所有廣泛使用的電腦平台上,由於其跨平台和安全性被廣泛使用,是最受歡迎的Web伺服器端軟體之一。它快速、可靠且可透過簡單的API擴充,將Perl/Python等解譯器編譯到伺服器中。
具體方法如下:
一:檢查伺服器上是否已安裝apache,停止並卸載系統自帶apache服務
指令為:
rpm -qa|grep httpd rpm -e --nodeps httpd-tools..
二:卸載完成後,上傳httpd服務安裝所需的所有套件
安裝套件雲端磁碟位址為:http: //pan.baidu.com/s/1qYTgomo 密碼:nk7z
我上傳到了/usr/local目錄下,然後解壓縮並安裝
三:安裝上述安裝包,按順序安裝
安裝apr,解決apr not found問題
#安裝apr-util,解決apr-util not found問題
#安裝pcre,解決pcre not found問題
#安裝httpd
[root@zdhcs5 local]# tar zxvf httpd-2.4.7.tar.gz [root@zdhcs5 local]# cd httpd-2.4.7 [root@zdhcs5 httpd-2.4.7]# ./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre (除了指定Apache的安装目录外,还要安装apr、apr-util、pcre,并指定参数) [root@zdhcs5 httpd-2.4.7]# make [root@zdhcs5 httpd-2.4.7]# make install
四:啟動apache服務並驗證安裝成功,瀏覽器輸入網址出現it works說明安裝成功
1 [root@zdhcs5 bin]# cd /usr/local/apache2/bin/ 2 [root@zdhcs5 bin]# ./apachectl start
五: 修改apache預設展示路徑為自訂路徑
我的自訂路徑為自動化結果報表路徑,也就是開啟網址就能看到linux伺服器上執行的自動化結果報表
我的自訂自動化結果報表路徑為(在autotest使用者下):/home/autotest/workspace/auto-project /test-output/html
修改apache的設定檔有兩處要修改:
1 [root@zdhcs5 local]# vi /usr/local/apache2/conf/httpd.conf
第一個:修改路徑
1 [root@zdhcs5 local]# cd /usr/local/apache2/bin 2 [root@zdhcs5 bin]# ./apachectl stop 3 [root@zdhcs5 bin]# ./apachectl start
1 [autotest@zdhcs5 html]$ chmod -R 775 /home/autotest/workspace/auto-project/test-output/html
以上是linux下修改apache伺服器的預設路徑的詳細內容。更多資訊請關注PHP中文網其他相關文章!