Install LAMP: Revision history

From The Maceys in California

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 January 2026

  • curprev 23:1623:16, 25 January 2026 Lynn Macey talk contribs 9,406 bytes +9,406 Created page with "LAMP is short for Linux Apache MySQL/MariaDB and PHP. These are the foundations of most web servers. ==Install Apache== <syntaxhighlight lang="shell" line> apt update -y </dev/null apt install apache2 -y </dev/null a2enmod rewrite a2enmod headers chown -R www-data:www-data /var/www systemctl restart apache2 </syntaxhighlight> ==Install MariaDB== <syntaxhighlight lang=shell line> apt install mariadb-server -y </dev/null systemctl status mariadb echo Done </syntaxhighlig..."