windows安装apache
-
cmd打开命令行窗口,切换到apache安装目录下
cd E:\apache\bin -
安装apache服务器
httpd.exe -k install -
修改配置文件
编辑文件:<安装目录>\conf\httpd.conf -
测试该服务的配置文件
httpd.exe -n “MyServiceName” –t -
启动已安装的apache服务
httpd.exe -k start -
测试安装结果
[http://localhost:port]
知识扩展
-
安装/卸载Apache服务
-
安装apache服务 httpd.exe -k install
-
指定要安装的服务的名称(适用于电脑上有几个不同的Apache服务设施)
httpd.exe -k install -n “MyServiceName” -
指定服务配置文件的路径和名称
httpd.exe -k install -n “MyServiceName” -f “c:\files\my.conf”
注:若不使用特殊参数(如httpd.exe -k install),服务名称为Apache2.X,配置文件为conf\httpd.conf -
移除一个Apache服务
httpd.exe -k uninstall -
移除特定的Apache服务
httpd.exe -k uninstall -n “MyServiceName”
-
-
管理Apache服务
-
启动已安装的Apache服务
httpd.exe -k start -
停止已安装的Apache服务
httpd.exe -k stop || httpd.exe -k shutdown -
重启已安装的Apache服务(迫使服务重读配置文件,适用于修改配置文件后)
httpd.exe -k restart
-