Friday, October 07, 2005
Install Apache HTTP server in Redhat Linux
Install Apache HTTP server on Redhat Linux
Usual Commands:
Download : $ lynx http://httpd.apache.org/download.cgi
Extract .gz : $ gzip -d httpd-2_1_NN.tar.gz
Extract .tar : $ tar xvf httpd-2_1_NN.tar
Configure : $ ./configure --prefix=PREFIX
(PREFIX)
Compile : $ make
Install : $ make install
Customize : $ vi PREFIX/conf/httpd.conf
Test : $ PREFIX/bin/apachectl start