Apache Installation

=================================================
APACHE INSTALLATION
=================================================
[root@]#cd /usr/local/src
[root@src]#wget wget http://mirrors.enquira.com/apache/httpd/httpd-2.2.9.tar.gz
[root@src]#tar xvfz httpd-2.2.8.tar.gz
[root@src]#cd httpd-2.2.8
[root@httpd-2.2.8]# ./configure –prefix=/usr/local/apache2
[root@httpd-2.2.8]# make
[root@httpd-2.2.8]# make install
[root@httpd-2.2.8]# cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
./configure –with-layout=Apache –add-module=../mod_frontpage.c –enable-module=so –enable-module=ssl –enable-module=rewrite –enable-module=info –enable-module=expires –enable-module=headers –enable-module=proxy –enable-module=unique_id –enable-suexec –logfiledir=/usr/local/apache/logs –prefix=/usr/local/apache –suexec-caller=nobody –suexec-docroot=/ –suexec-gidmin=100 –suexec-logfile=/usr/local/apache/logs/suexec_log –suexec-uidmin=100 –suexec-userdir=public_html –sysconfdir=/usr/local/apache/conf
=================================================

Leave a Comment