Created
November 18, 2017 20:35
-
-
Save gunaevart/ec9df0daa09608dd8496c517d64baad0 to your computer and use it in GitHub Desktop.
Установка и удаление LAMP на UBUNTU 17.10
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
// удалякм LAMP sudo apt purge php* apache2* mysql* -y | |
//Устанавливаем LAMP sudo apt-get install lamp-server^ | |
sudo apt-get -y update && sudo apt-get -y upgrade && sudo apt-get -y install lamp-server^ && sudo apt-get -y install phpmyadmin | |
// Если не работает phpmyadmin делаем | |
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf | |
sudo a2enconf phpmyadmin | |
sudo /etc/init.d/apache2 reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment