# https://www.digitalocean.com/community/tutorials/how-to-install-the-apache-web-server-on-ubuntu-18-04 # Check with the systemd init system to make sure the service is running by typing: sudo systemctl status apache2 # To stop your web server, type: sudo systemctl stop apache2 # To start the web server when it is stopped sudo systemctl start apache2 # To stop and then start the service again sudo systemctl restart apache2 # If you are simply making configuration changes, Apache can often reload without dropping connections sudo systemctl reload apache2