diff options
author | Rich Bowen <rbowen@apache.org> | 2018-02-13 14:51:48 +0100 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2018-02-13 14:51:48 +0100 |
commit | 8a4ea2e5b9fd96c279eccd673b3f3f4938a16034 (patch) | |
tree | d01013560c24a8a8cbd0bc9d3f0cdd60e2b9da26 /docs/manual/install.xml | |
parent | Fixes weird formatting issue in the output. (diff) | |
download | apache2-8a4ea2e5b9fd96c279eccd673b3f3f4938a16034.tar.xz apache2-8a4ea2e5b9fd96c279eccd673b3f3f4938a16034.zip |
Installation instructions, and links, for the majority of people who
will not be building from source.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1824136 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/install.xml')
-rw-r--r-- | docs/manual/install.xml | 51 |
1 files changed, 43 insertions, 8 deletions
diff --git a/docs/manual/install.xml b/docs/manual/install.xml index b3d4accd0d..de8f1d9974 100644 --- a/docs/manual/install.xml +++ b/docs/manual/install.xml @@ -52,6 +52,34 @@ <section id="overview"><title>Overview for the impatient</title> + <dl> + <dt>Installing on Fedora/CentOS/Red Hat Enterprise Linux</dt> + <dd> + <highlight> +sudo yum install httpd +sudo systemctl enable httpd +sudo systemctl start httpd + </highlight> + + <note type="warning">Newer releases of these distros use + <code>dnf</code> rather than <code>yum</code>. See <a + href="https://fedoraproject.org/wiki/Apache_HTTP_Server">the + Fedora project's documentation</a> for platform-specific notes.</note> + </dd> + + <dt>Installing on Ubuntu/Debian</dt> + <dd> +<highlight> +sudo apt install apache2 +sudo service apache2 start +</highlight> + + <note type="warning">See <a href="https://help.ubuntu.com/lts/serverguide/httpd.html">Ubuntu's documentation</a> for platform-specific notes.</note> + + </dd> + + <dt>Installing from source</dt> + <dd> <table> <columnspec><column width=".13"/><column width=".80"/></columnspec> <tr> @@ -102,15 +130,22 @@ </tr> </table> - <p><em>NN</em> must be replaced with the current version - number, and <em>PREFIX</em> must be replaced with the - filesystem path under which the server should be installed. If - <em>PREFIX</em> is not specified, it defaults to - <code>/usr/local/apache2</code>.</p> + <p><em>NN</em> must be replaced with the current version + number, and <em>PREFIX</em> must be replaced with the + filesystem path under which the server should be installed. If + <em>PREFIX</em> is not specified, it defaults to + <code>/usr/local/apache2</code>.</p> + + <p>Each section of the compilation and installation process is + described in more detail below, beginning with the requirements + for compiling and installing Apache httpd.</p> + </dd> + </dl> + + <note type="warning">Don't see your favorite platform mentioned + here? <a href="http://httpd.apache.org/docs-project/">Come help us + improve this doc.</a> - <p>Each section of the compilation and installation process is - described in more detail below, beginning with the requirements - for compiling and installing Apache httpd.</p> </section> <section id="requirements"><title>Requirements</title> |