Windows7如何安裝Apache64-bitBinaries
Windows7如何安裝Apache64-bitBinaries
Windows 7作為微軟最新的操作系統(tǒng),市場(chǎng)普及率正在穩(wěn)步上升。作為一款全新的操作系統(tǒng),Windows 7新功能和新技巧自然不少。今天學(xué)習(xí)啦小編將為大家講解Windows7x64是如何安裝Apache64-bit的?
安裝了 Windows 7 x64 English 版本,在搭建開(kāi)發(fā)測(cè)試環(huán)境時(shí),發(fā)現(xiàn)Apache官方根本沒(méi)有提供64位的版本。幾經(jīng)搜索,發(fā)現(xiàn)在 blackdot.be 有人用 Visual Studio 2005編譯了一個(gè)Apache64-bitbinaries。試了一下,在 Windows 7 64-bit上很好用。安裝過(guò)程記錄如下:
Windows 7 x64 安裝 Apache 64-bitBinaries詳細(xì)步驟
1. 訪問(wèn) Blackdot.be ::Apache64-bitBinaries,點(diǎn)擊下方的鏈接httpd-2.2.13-win64.rar,下載 Apache64-bit的壓縮包。
2. 將壓縮包解壓到本地硬盤。例如我存放在 D:/Web/Tool/httpd-2.2-x64。
3. 以管理員身份運(yùn)行 DOS Command(Runasadministrator),進(jìn)入D:/Web/Tool/httpd-2.2-x64。
4. 執(zhí)行 httpd -k install:
D:\Web\Tool\httpd-2.2-x64\bin>httpd -k install
Installing the Apache2.2 service
The Apache2.2 service is successfully installed.
Testing httpd.conf....
Errors reported here must be corrected before theservicecanbestarted.
httpd: Syntax error online35ofD:/Web/Tool/httpd-2.2-x64/conf/httpd.conf:
ServerRootmust be a valid directory
在執(zhí)行 httpd -k install 的時(shí)候,顯示 The Apache2.2serviceissuccessfullyinstalled 表明已經(jīng)安裝成功。接下來(lái)的Testinghttpd.conf有可能會(huì)出錯(cuò),例如我安裝時(shí)報(bào)了ServerRoot must be avaliddirectory,不用理會(huì)?;仡^自己手工編輯httpd.conf, 將ServerRoot指向正確的目錄即可。
5. 修改 httpd.conf 完成之后,執(zhí)行 httpd -k start:
D:\Web\Tool\httpd-2.2-x64\bin>httpd -k start
D:\Web\Tool\httpd-2.2-x64\bin>
如果沒(méi)有提示錯(cuò)誤,則表明啟動(dòng)成功。
當(dāng)然你也可以執(zhí)行完第2步之后,先將 httpd.conf 文件改好,再執(zhí)行 httpd -k install和httpd-kstart。