Tuesday, November 2, 2010

Installation of Webserver

Apache 

Download: wget http://httpd.apache.org/download.cgi

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



LiteSpeed:

Go to the below given link and choose the appropriate Download link according to the Operating system used and architecture.

http://www.litespeedtech.com/litespeed-web-server-downloads.html

wget <The above choosen link >





1. Extract the package at convinent location by using
        tar xvfz lsws-XXXX.tar.gz
       or
        gunzip -c lsws-XXXX.tar.gz | tar xvf -
        if you are not using the GNU tar

2. Type
        cd lsws-XXXX

3. If you want to install to system directory, you need to become root first.
   Type

        ./install.sh

4. Follow the instruction on the screen


For more information please look at the manual under the docs/ directory or
visit

        http://www.litespeedtech.com/



















Nginx

1. wget http://sysoev.ru/nginx/nginx-0.8.53.tar.gz
2. tar -xvzf nginx-0.8.53.tar.gz
3.cd  nginx-0.8.53
4. ./configure
5.make
6.make install







No comments:

Post a Comment