The website foundation - LAMP stack
tl;dr a simple guide to setting up a LAMP stack on an existing Ubuntu server. For my purposes I’m referring to LAMP as: L inux (Ubuntu LTS): Operating system A pache: webserver M ySQL: database P HP: scripting language Linux: see alternate post Apache: Install Apache from the Ubuntu repositories $ sudo apt-get install apache2 Configure Apache to start automatically $ sudo systemctl enable apache2 $ sudo systemctl start apache2 $ sudo systemctl status apache2 Test Apache by opening the server IP address in a web-browser server_ip If everything went as expected you should see a generic page describing the Apache install and configuration files. ...