刚才安装了 Windows 7 x64 English 版本,在搭建开发测试环境时,发现 Apache 官方根本没有提供 64 位的版本。
几经搜索,发现在 blackdot.be 有人用 Visual Studio 2005 编译了一个 Apache 64-bit binaries。试了一下,在 Windows 7 64-bit 上很好用。安装过程记录如下 https://www.xiaohui.com/dev/server/install-apache-64-bit-binaries-on-windows-7-x64.htm .
D:/WebTool/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 the service can be started. httpd: Syntax error on line 35 of D:/Web/Tool/httpd-2.2-x64/conf/httpd.conf: ServerRoot must be a valid directory
在执行 httpd -k install 的时候,显示 The Apache2.2 service is successfully installed 表明已经安装成功。接下来的 Testing httpd.conf 有可能会出错,例如我安装时报了 ServerRoot must be a valid directory,不用理会。回头自己手工编辑 httpd.conf, 将 ServerRoot 指向正确的目录即可。
D:/WebTool/httpd-2.2-x64/bin/httpd -k start
如果没有提示错误,则表明启动成功。
当然你也可以执行完第2步之后,先将 httpd.conf 文件改好,再执行 httpd -k install 和 httpd -k start