Apache is open source program developed by Apache.org community. Apache has powered more than 50% of online website available today.
Installing Apache is very simple using terminal or web console. All you need is Linux OS based web server and root access to server.

Install Apache on Linux OS
Apache is by default available in Linux OS, we just need to update it to latest available version.
1 |
sudo apt-get update |
Now its time to install Apache on Linux server.
1 |
sudo apt-get install apache2 |
Once you have installed it, you need to restart the Apache.
1 |
sudo service apache2 restart |
Always remember to restart Apache server whenever you do any changes to any configuration.