How to Install Apache HTTPD on Linux 6
To Install using YUM package:- # yum install httpd -y or # up2date httpd Install Apache From Source :- Download URL : http://www-us.apache.org/dist//httpd/httpd-2.4.29.tar.gz https://httpd.apache.org/download.cgi#apache24 1. Extract the gz file using tar command # tar -xvzf httpd-2.2.31.tar.gz # cd httpd-2.2.31 2. Configure the files #./configure –prefix=PREFIX 3. Compile # make Compile the package using make command …