Compiling and Installing
$ gzip -d httpd-NN.tar.gz
$ vi PREFIX/conf/apache2.conf
$ PREFIX/bin/apache2ctl -k start
NN must be replaced with the current version number, and PREFIX must be replaced with the filesystem path under which the server should be installed. If PREFIX is not specified, it defaults to /usr/local/apache2
Each section of the compilation and installation process is described in more detail below, beginning with the requirements for compiling and installing Apache httpd.
The following requirements exist for building Apache httpd:
and ./srclib/apr-util
(be sure the directory names do not have version numbers; for example, the APR distribution must be under ./srclib/apr/) and use ./configure
's --with-included-apr
option. On some platforms, you may have to install the corresponding -dev
packages to allow httpd to build against your installed copy of APR and APR-Util.--with-pcre
must contain basic build tools such as make
programs are used for this purpose which are based on the Network Time Protocol (NTP). See the apxs
(which are written in Perl) the Perl 5 interpreter is required (versions 5.003 or newer are sufficient). If you have multiple Perl interpreters (for example, a systemwide install of Perl 4, and your own install of Perl 5), you are advised to use the --with-perl
script, you will not be able to use the affected support scripts. Of course, you will still be able to build and use Apache httpd.The Apache HTTP Server can be downloaded from the Apache HTTP Server download site, which lists several mirrors. Most users of Apache on unix-like systems will be better off downloading and compiling a source version. The build process (described below) is easy, and it allows you to customize your server to suit your needs. In addition, binary releases are often not up to date with the latest source releases. If you do download a binary, follow the instructions in the INSTALL.bindist
file inside the distribution.
After downloading, it is important to verify that you have a complete and unmodified version of the Apache HTTP Server. This can be accomplished by testing the downloaded tarball against the PGP signature. Details on how to do this are available on the download page and an extended example is available describing the use of PGP.
Extracting the source from the Apache HTTP Server tarball is a simple matter of uncompressing, and then untarring:
into that directory before proceeding with compiling the server.
The next step is to configure the Apache source tree for your particular platform and personal requirements. This is done using the script
included in the root directory of the distribution. (Developers downloading an unreleased version of the Apache source tree will need to have configureautoconf
before proceeding with the next steps. This is not necessary for official releases.)
To configure the source tree using all the default options, simply type ./configure
accepts a variety of variables and command line options.configure
where Apache is to be installed later, because Apache has to be configured for this location to work correctly. More fine-tuned control of the location of files is possible with additional configure options.
Also at this point, you can specify which features you want included in Apache by enabling and disabling modules. Apache comes with a wide range of modules included by default. They will be compiled as shared objects (DSOs) which can be loaded or unloaded at runtime. You can also choose to compile modules statically by using the option --enable-
option, where modulemodule is the name of the module with the mod_
string removed and with any underscore converted to a dash. Similarly, you can disable modules with the --disable-
option. Be careful when using these options, since module
cannot warn you if the module you specify does not exist; it will simply ignore the option.configure
In addition, it is sometimes necessary to provide the
script with extra information about the location of your compiler, libraries, or header files. This is done by passing either environment variables or command line options to configure
manual page. Or invoke configure
For a short impression of what possibilities you have, here is a typical example which compiles Apache for the installation tree /sw/pkg/apache
with a particular compiler and flags plus the two additional modules
$ CC="pgcc" CFLAGS="-O2" \
is run it will take several minutes to test for the availability of features on your system and build Makefiles which will later be used to compile the server.configure
Now you can build the various parts which form the Apache package by simply running the command:
Please be patient here, since a base configuration takes several minutes to compile and the time will vary widely depending on your hardware and the number of modules that you have enabled.
This step will typically require root privileges, since PREFIX is usually a directory with restricted write permissions.
If you are upgrading, the installation will not overwrite your configuration files or documents.
or consult PREFIX/docs/manual/http://httpd.apache.org/docs/2.4/ for the most recent version of this manual and a complete reference of available configuration directives.
You should then be able to request your first document via the URL http://localhost/
. Then PREFIX/htdocs/stop the server again by running:
The first step in upgrading is to read the release announcement and the file CHANGES
in the source distribution to find any changes that may affect your site. When changing between major releases (for example, from 2.0 to 2.2 or from 2.2 to 2.4), there will likely be major differences in the compile-time and run-time configuration that will require manual adjustments. All modules will also need to be upgraded to accommodate changes in the module API.
process will not overwrite any of your existing documents, log files, or configuration files. In addition, the developers make every effort to avoid incompatible changes in the
options, run-time configuration, or the module API between minor versions. In most cases you should be able to use an identical configure
To upgrade across minor versions, start by finding the file config.nice
file to the source tree of the new version, edit it to make any desired changes, and then run:
and a different port (by adjusting the Listen
directive) to test for any incompatibilities before doing the final upgrade.You can pass additional arguments to config.nice
, which will be appended to your original
A large number of third parties provide their own packaged distributions of the Apache HTTP Server for installation on particular platforms. This includes the various Linux distributions, various third-party Windows packages, Mac OS X, Solaris, and many more.
Our software license not only permits, but encourages, this kind of redistribution. However, it does result in a situation where the configuration layout and defaults on your installation of the server may differ from what is stated in the documentation. While unfortunate, this situation is not likely to change any time soon.
A description of these third-party distrubutions is maintained in the HTTP Server wiki, and should reflect the current state of these third-party distributions. However, you will need to familiarize yourself with your particular platform's package management and installation procedures.
Modules | Directives | FAQ | Glossary | Sitemap
Apache HTTP Server Version 2.4
Compiling and Installing
Available Languages: de | en | es | fr | ja | ko | tr
This document covers compilation and installation of the Apache HTTP Server on Unix and Unix-like systems only. For compiling and installation on Windows, see Using Apache HTTP Server with Microsoft Windows and Compiling Apache for Microsoft Windows. For other platforms, see the platform documentation.
Apache httpd uses libtool and autoconf to create a build environment that looks like many other Open Source projects.
libtool
autoconf
If you are upgrading from one minor version to the next (for example, 2.2.50 to 2.2.51), please skip down to the upgrading section.
- Overview for the impatient
- Requirements
- Download
- Extract
- Configuring the source tree
- Build
- Install
- Customize
- Test
- Upgrading
- Third-party packages
See also
- Configure the source tree
- Starting Apache httpd
- Stopping and Restarting