How to install Apache server in Ubuntu ?

Apache is an open source web server software created and maintained by Apache software foundation. Since it an open source so it is free to use. It is a web server used for one or more HTTP based websites. It is widely used by web hosting companies to provide shared and virtual hosting.

Steps to install the Apache server:

  • Make Superuser: Open terminal and use following command to make yourself superuser.
    sudo su

    Image

  • Update Ubuntu package: Use the following command to update the Ubuntu package list.
    sudo apt update

    Image

  • Install Apache: After installing the Ubuntu package list, use the following command to install apache server.
    sudo apt install apache2

    Image

  • After completion of the installation process, the Apache server automatically start. The status of the Apache server can be checked by using the following command.
    sudo systemctl status apache2

    Image

  • Open the browser and type localhost or 127.0.0.1 on the address bar. It will display the default page of the Apache server.
    Image


My Personal Notes arrow_drop_up

Image
Check out this Author's contributed articles.

If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.