Created
March 12, 2020 14:56
-
-
Save antoniocampos/d57b41fe54d249f74cace1d34a6cc089 to your computer and use it in GitHub Desktop.
Debian 10 Install Apache2 + Mariadb + PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install apache | |
apt-get install apache2 | |
# install MariaDB | |
apt install mariadb-server | |
# configure MariaDb root Password | |
mysql_secure_installation | |
# install php and configure apache | |
apt install php libapache2-mod-php php-gd php-mysql php-pear libgd-tools |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment