rilpoint_mw113

Web Server

                 == Web Server – Apache ==


The Apache Web Server is a very popular choice for serving web pages.

If you intend to set up a web server in your BOSS machine, apache is one important module that you must install. In this tutorial, we will show you how to install and configure apache in BOSS.

Installing Apache:

Getting apache onto your BOSS machine is easy. Using either the Synaptic Package Manager(System-->Administrator -->, Synaptic Package Manager) search and install the “apache2” module. Alternatively, you can open a terminal and type the following command:


              sudo apt-get install apache2

Once the installation finished, open a browser and go to the URL http://localhost“.

If you see the word “It Works!“, then your installation of apache is successful


How to Start Apache :

After you have installed Apache, it will be added to the init.d list and will auto start whenever you boot up your computer. The following commands allow you to start, restart, stop Apache.


     	 sudo /etc/init.d/apache2 start      #start apache
        sudo /etc/init.d/apache2 stop      #stop apache
        sudo /etc/init.d/apache2 restart   #restart apache