Skip to content

Instantly share code, notes, and snippets.

@rbk
Created December 14, 2018 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbk/b1ad4546514409de72c9c86ddbdd13ba to your computer and use it in GitHub Desktop.
Save rbk/b1ad4546514409de72c9c86ddbdd13ba to your computer and use it in GitHub Desktop.
#Update system
sudo apt-get update
sudo apt-get upgrade -y
#Install Apache2
sudo apt-get install apache2 -y
sudo a2enmod rewrite
sudo service apache2 restart
#Install PHP
sudo apt-get install php libapache2-mod-php -y
#Install MySQL
sudo apt-get install mysql-server php-mysql -y
sudo service apache2 restart
#Install PhpMyAdmin
sudo apt-get install phpmyadmin -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment