Apache Installation

Share on:

Apache installation is an easy process, I’m going to describe highlights of installation procedure in an easy way. I have written all the steps from Unix environment.

Download:

Go to https://httpd.apache.org/download.cgi and download your preferred version

Extract:

gzip -d httpd-NN.tar.gz tar -xvf httpd-NN.tar cd httpd-NN

Configure:

./configure –prefix=PREFIX

Compile:

make

Install:

make install

Customize:

vi PREFIX/conf/httpd.conf

Test:

PREFIX/bin/apachectl -k start

comments powered by Disqus