Tag: apache2


How to install Apache2 Web Server @ Debian 5.0 i686

March 16th, 2010 — 2:27am

Requirement

*GNU C Compiler and other small packages required

debian:~# apt-get install gcc build-essential automake autoconf autoreconf libncurses5-dev

*OpenSSL

Package :

debian:~# wget http://www.alliedquotes.com/mirrors/apache/httpd/httpd-2.2.15.tar.gz

Installation

debian:~# tar -zxvf httpd-2.2.15.tar.gz
debian:~# ./configure --prefix=/usr/local/apache2 \
--enable-so --enable-mods-shared=most \
--enable-ssl=static --with-ssl=/usr/local/ssl
debian:~# make && make install

Test

debian:~/httpd-2.2.15# /usr/local/apache2/bin/apachectl -v
Server version: Apache/2.2.15 (Unix)
Server built:   Mar 15 2010 22:16:15
debian:~/httpd-2.2.15# /usr/local/apache2/bin/apachectl start

5 comments » | Linux

Back to top