Apache is an open source web server application that works with UNIX, Linux, or Windows. The differences of IIS (Internet Information Services) which windows version and control by GUI (Graphical User Interface) or CLI (Command Line Interface) and it is easy to setup. IIS works in all version of Windows NT execpt Windows XP Home Edition. Apache by default is only CLI, but if you install "Webmin" (Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and etc.) which makes it controllable by web interface.
To install your basic apache installation follow these steps:
That is your basic install of apache. Next time I show you how to setup multiusers.
- root@DTS-Enterprise:~/Desktop$ lynx http://httpd.apache.org/download.cgi
- root@DTS-Enterprise:~/Desktop$ gzip -d httpd-NN.tar.gz
- root@DTS-Enterprise:~/Desktop$ tar xvf httpd-NN.tar
- root@DTS-Enterprise:~/Desktop$ cd httpd-NN
- root@DTS-Enterprise:~/Desktop/httpd-NN$ ./configure --prefix=PREFIX - Configure
- root@DTS-Enterprise:~/Desktop/httpd-NN$ make - Compile the install
- root@DTS-Enterprise:~/Desktop/httpd-NN$ make install - Install
- root@DTS-Enterprise:~/Desktop/httpd-NN$ vi PREFIX/conf/httpd.conf - Customize
- root@DTS-Enterprise:~/Desktop/httpd-NN$ PREFIX/bin/apachectl -k start - Test apache
Comments