windows手動(dòng)安裝apache服務(wù)的方法(apache windows部署)
2024-02-23
更新時(shí)間:2024-02-23 00:15:47作者:未知
步驟一 Cmd打開(kāi)命令行窗口,切換到apache安裝目錄下
cd C:/MAS/TRSMAS/win31/apache/bin
步驟二 安裝apache服務(wù)器 installed Apache services
httpd.exe -k install
步驟三 修改配置文件
編輯文件:<安裝目錄>/conf/httpd.conf
步驟四測(cè)試該服務(wù)的配置文件
httpd.exe -n "MyServiceName" –t
步驟五啟動(dòng)已安裝的apache服務(wù)
httpd.exe -k start
步驟六測(cè)試安裝結(jié)果
http://localhost:port
FAQ
1. 未安裝服務(wù),現(xiàn)象如下圖示——解決方案:執(zhí)行步驟一、步驟二
右下角顯示
雙擊打開(kāi)右下角圖標(biāo),顯示
2. 配置文件錯(cuò)誤,現(xiàn)象如下圖示——解決方案:執(zhí)行步驟三
知識(shí)擴(kuò)展
1. 安裝/卸載Apache服務(wù)
1) 安裝apache服務(wù)
httpd.exe -k install
2) 指定要安裝的服務(wù)的名稱(chēng)(適用于電腦上有幾個(gè)不同的Apache服務(wù)設(shè)施)
httpd.exe -k install -n "MyServiceName"
3) 指定服務(wù)配置文件的路徑和名稱(chēng)
httpd.exe -k install -n "MyServiceName" -f "c:/files/my.conf"
注:若不使用特殊參數(shù)(如httpd.exe -k install),服務(wù)名稱(chēng)為Apache2.X,配置文件為conf/httpd.conf
4) 移除一個(gè)Apache服務(wù)
httpd.exe -k uninstall
5) 移除特定的Apache服務(wù)
httpd.exe -k uninstall -n "MyServiceName"
2. 管理Apache服務(wù)
1) 啟動(dòng)已安裝的Apache服務(wù)
httpd.exe -k start
2) 停止已安裝的Apache服務(wù)
httpd.exe -k stop || httpd.exe -k shutdown
3) 重啟已安裝的Apache服務(wù)(迫使服務(wù)重讀配置文件,適用于修改配置文件后)
httpd.exe -k restart