Appendix
File apache2
#!/bin/bash
# Upodating the package lists
sudo apt-get update
#Apache2 installation
sudo apt-get install apache2 -y
sudo /etc/init.d/apache2 restart
File Bench.sh
#!/bin/bash
# Upodating the package lists
sudo apt-get update
#Apache benchmark installation
sudo apt-get install apache2-utils -y