How to install Apache's Web Server on Windows 10 quickly

There are a variety of reasons why developer or DevOps professionals locally install the Apache Web Server on a Windows 10 machine. They can use the Apache HTTP server for testing, or to simulate a production HTTP server that acts as static file cache for Apache Tomcat or Jetty. Maybe they simply want an internal web server for the office.

Fortunately, it’s relatively straightforward to install the Apache HTTP Server on Windows. However, you need to be aware of a few caveats.

Download Apache’s HTTP server

The first road-bump to install Apache on Windows is that you can’t download the installation binaries directly from apache.org. You must clone and compile the Apache HTTP Server source code yourself, or download the Apache 2.4 installation media from a third party.

A third-party download of the binaries is definitely the easiest way to go. The Apache website lists several approved options, including:

  • Apache Lounge, which provides a single ZIP file you can quickly download and extract
  • Apache Haus, which provides an Apache 2.4 install file that is packaged with OpenSSL
  • The XAMPP distribution from the Apache Friends, who package Apache with MariaDB, PHP and Perl
  • Bitnami, which provides pre-configured VMs, containers and installation media with Apache.

I’m a lifelong regular Bitnami user. I’d say the Bitnami stacks are the best installation media to use. (The WAMP stack with PHP, MySQL and Apache are highly recommended.)

The simplest approach, though, is to download the Apache Web Server installation ZIP file from the Apache Lounge. The website‘s spammy ads are a bit disconcerting, but the Apache download file is verifiable. Just don’t accidentally click on the wrong link and install some adware on your computer.

Step by step Apache install on Windows

If you choose the Apache Lounge as your source for the Apache on Windows installation media, the steps to follow are simple:

  1. Download the installation media in the form of a ZIP file
  2. Extract the contents of the Apache Web Server 2.4 zip to the file system
  3. Locate the extracted Apache24 folder and copy this folder to the root of C:\
  4. Open the C:\Apache24\bin folder and run the httpd.exe command
  5. View the Apache HTTP Server landing page at http://localhost:80 to verify the Windows install

When you point your browser to the localhost address, and there are no conflicts on port 80, a landing page will appear that says “It works!” To share files or host a website on the Apache server, simply add folders and files under the \htdocs folder. These files become immediately available over the web.

Avoid the ‘Apache ServerRoot must be a valid directory’ error

Somewhat surprisingly, the Bitnami and Apache Lounge installation media require you to install the software directly into the root of the Windows C:\ drive. Otherwise, you run into a “ServerRoot must be a valid directory” error. To remedy this Apache installation error, either move the Apache24 folder into the C:\ drive, or update the SRVROOT property defined on line 39 of Apache’s httpd.conf file.

HTTP Apache 2.4 Windows Install

Avoid ServerRoot errors when you install the Apache Web Server on Windows 10.

If you do run into this Apache ServerRoot Directory error with a Bitnami or XAMPP installation, run the configuration file found in the installation’s root or bin directly. The error will go away.

And that’s how easy it is to install the Apache HTTP Server on Windows 10.

App Architecture
Software Quality
Cloud Computing
Security
SearchAWS
Close